/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #003d58;
    gap: 1rem;
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #003d58;
    margin: 0;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: #005a7a;
    margin: 0;
    line-height: 1.1;
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #003d58;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #003d58;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, #005a7a 0%, #007a9c 100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.slide-1 {
    background: linear-gradient(135deg, #005a7a 0%, #007a9c 100%);
}

.hero-slide.slide-2 {
    background: linear-gradient(135deg, #003d58 0%, #001f2e 100%);
}

.hero-slide.slide-3 {
    background: linear-gradient(135deg, #007a9c 0%, #005a7a 100%);
}

.hero-slide.slide-4 {
    background: linear-gradient(135deg, #001f2e 0%, #003d58 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    margin-left: 5%;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #003d58;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #003d58;
    transform: translateY(-2px);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: white;
    border-color: white;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Secciones */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #003d58;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #003d58, #005a7a);
    border-radius: 2px;
}


/* Horarios Section */
.horarios {
    padding: 30px 0 100px 0;
    background: white;
}

.horarios-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.horarios-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003d58;
}

.horarios-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.youtube-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff0000;
}

.youtube-icon {
    width: 50px;
    height: 50px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.youtube-icon i {
    font-size: 1.5rem;
    color: white;
}

.youtube-text h4 {
    color: #003d58;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.youtube-text p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    color: #cc0000;
    text-decoration: none;
    transform: translateX(2px);
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.horario-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #003d58;
    transition: transform 0.3s ease;
    position: relative;
}

.horario-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #003d58, #005a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.horario-icon i {
    font-size: 1.2rem;
    color: white;
}

.transmision {
    background: #ff0000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.horario-item:hover {
    transform: translateY(-5px);
}

.dia {
    font-weight: 600;
    font-size: 1.1rem;
    color: #003d58;
    margin-bottom: 0.5rem;
}

.horario {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.descripcion {
    color: #666;
    font-size: 0.9rem;
}

/* ¿Qué Creemos? Section */
.que-creemos {
    padding: 100px 0;
    background: #f8f9fa;
}

.creemos-single-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.creemos-single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #003d58, #005a7a);
}

.creemos-intro {
    text-align: center;
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.intro-text {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.verse-reference {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #003d58;
    font-weight: 600;
    font-style: italic;
    font-size: 1.1rem;
}

.verse-reference i {
    font-size: 1.3rem;
}

.pdf-download {
    margin-top: 3rem;
    padding: 2rem 0 3rem 0;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #f8f9fa;
    color: #495057;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pdf-btn:hover {
    background: #e9ecef;
    color: #003d58;
    border-color: #003d58;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pdf-btn i {
    font-size: 1.1rem;
    color: #dc2626;
}

.pdf-btn span {
    font-weight: 500;
}

.creemos-beliefs {
    padding: 2rem 3rem 3rem;
}

.belief-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.belief-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.belief-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003d58;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.belief-item h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #003d58, #005a7a);
    border-radius: 2px;
}

.belief-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
    margin-left: 1.2rem;
}

.verse-refs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-left: 1.2rem;
}

.verse-refs span {
    background: #f8f9fa;
    color: #003d58;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.verse-refs span:hover {
    background: #003d58;
    color: white;
    transform: translateY(-2px);
}

/* Visión, Misión y Valores Section */
.vision-mision {
    padding: 100px 0;
    background: white;
}

.vision-mision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vision-card,
.mision-card,
.valores-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mision-card::before,
.valores-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003d58, #005a7a);
}

.vision-card:hover,
.mision-card:hover,
.valores-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003d58, #005a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.vision-card h3,
.mision-card h3,
.valores-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #003d58;
}

.vision-card p,
.mision-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.valores-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.valores-card ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
    line-height: 1.6;
}

.valores-card ul li:last-child {
    border-bottom: none;
}

.valores-card ul li strong {
    color: #003d58;
    font-weight: 600;
}

.valores-card ul li {
    color: #666;
    line-height: 1.6;
}

.valores-card ul li:not(:last-child) {
    margin-bottom: 0.8rem;
}

.valores-card ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.valores-card ul li .bible-refs {
    color: #ff6b35;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    font-style: italic;
}

/* Liderazgo Section */
.liderazgo {
    padding: 100px 0;
    background: white;
}

.liderazgo-content {
    max-width: 1200px;
    margin: 0 auto;
}

.liderazgo-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.liderazgo-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.liderazgo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.lider-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.lider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003d58, #005a7a);
}

.lider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.lider-card::after {
    content: '👆';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.lider-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.lider-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #003d58, #005a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.lider-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lider-photo i {
    font-size: 2.5rem;
    color: white;
}

.lider-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #003d58;
    margin-bottom: 0.5rem;
}

.lider-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
    font-style: italic;
}

/* Ministerios Section */
.ministerios {
    padding: 100px 0;
    background: #f8f9fa;
}

.ministerios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ministerio-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.ministerio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.ministerio-card i {
    font-size: 3rem;
    color: #003d58;
    margin-bottom: 1rem;
}

.ministerio-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.ministerio-card p {
    color: #666;
    line-height: 1.6;
}

/* Contacto Section */
.contacto {
    padding: 100px 0;
    background: white;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contacto-item i {
    font-size: 1.5rem;
    color: #003d58;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contacto-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contacto-item p {
    color: #666;
    line-height: 1.6;
}

.contacto-map {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contacto-map h3 {
    color: #003d58;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 10px;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.map-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.map-actions .btn-primary {
    background: #003d58;
    color: white;
    border: 2px solid #003d58;
}

.map-actions .btn-primary:hover {
    background: #005a7a;
    border-color: #005a7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,61,88,0.3);
}

.map-actions .btn-secondary {
    background: white;
    color: #003d58;
    border: 2px solid #003d58;
}

.map-actions .btn-secondary:hover {
    background: #f8f9fa;
    color: #005a7a;
    border-color: #005a7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,61,88,0.2);
}

.plus-code {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contacto-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contacto-form h3 {
    color: #003d58;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #003d58;
}

.contacto-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #003d58;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #003d58;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
    }
    
    .logo {
        gap: 0.8rem;
    }
    
    .logo-title {
        font-size: 0.9rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-left: 0;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .horarios {
        padding: 20px 0 80px 0;
    }
    
    .youtube-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .youtube-text h4 {
        font-size: 1rem;
    }
    
    .youtube-text p {
        font-size: 0.85rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-nav {
        bottom: 20px;
    }
    
    .horarios-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .creemos-single-card {
        margin: 0 20px;
    }
    
    .creemos-intro {
        padding: 2rem 2rem 1.5rem;
    }
    
    .intro-text {
        font-size: 1.2rem;
    }
    
    .creemos-beliefs {
        padding: 1.5rem 2rem 2rem;
    }
    
    .belief-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .belief-item h3 {
        font-size: 1.2rem;
    }
    
    .belief-item p {
        margin-left: 0;
    }
    
    .verse-refs {
        margin-left: 0;
    }
    
    .pdf-download {
        margin-top: 2rem;
        padding: 1.5rem 0 2rem 0;
    }
    
    .pdf-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .pdf-btn i {
        font-size: 1rem;
    }
    
    .vision-mision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-card,
    .mision-card,
    .valores-card {
        padding: 2rem;
    }
    
    .liderazgo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lider-card {
        padding: 1.5rem;
    }
    
    .lider-photo {
        width: 100px;
        height: 100px;
    }
    
    .lider-photo i {
        font-size: 2rem;
    }
    
    .lider-info h3 {
        font-size: 1.2rem;
    }
    
    .lider-info h4 {
        font-size: 1rem;
    }
    
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions .btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .servicios-grid,
    .ministerios-grid {
        grid-template-columns: 1fr;
    }
    
    .horarios-grid {
        grid-template-columns: 1fr;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servicio-card,
.ministerio-card,
.horario-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #003d58, #005a7a);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,0 1000,200 0,100"/></svg>');
    background-size: cover;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #003d58, #005a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 61, 88, 0.3);
    position: relative;
}

.modal-photo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #003d58, #005a7a);
    border-radius: 50%;
    z-index: -1;
}

.modal-photo i {
    font-size: 3rem;
    color: white;
}

.modal-info {
    width: 100%;
}

.modal-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003d58;
    margin-bottom: 0.5rem;
}

.modal-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.modal-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: left;
}

.modal-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.modal-credential {
    background: #f0f7ff;
    color: #003d58;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #e0f0ff;
    transition: all 0.3s ease;
}

.modal-credential:hover {
    background: #003d58;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 88, 0.3);
}

.modal-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #003d58;
    text-align: left;
}

.modal-details h5 {
    color: #003d58;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-details h5::before {
    content: '';
    width: 3px;
    height: 15px;
    background: linear-gradient(135deg, #003d58, #005a7a);
    border-radius: 2px;
}

.modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-details li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-details li:last-child {
    border-bottom: none;
}

.modal-details li i {
    color: #003d58;
    width: 16px;
    text-align: center;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-photo {
        width: 100px;
        height: 100px;
    }
    
    .modal-photo i {
        font-size: 2.5rem;
    }
    
    .modal-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-info h4 {
        font-size: 1.1rem;
    }
    
    .modal-credentials {
        gap: 0.5rem;
    }
    
    .modal-credential {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .modal-details {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 15px;
    }
    
    .modal-header {
        border-radius: 15px 15px 0 0;
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-photo {
        width: 80px;
        height: 80px;
    }
    
    .modal-photo i {
        font-size: 2rem;
    }
}
