@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #003366;
    /* Deep Royal Blue */
    --accent: #d4af37;
    /* Metallic Gold */
    --azure: #0ea7ce;
    /* New Light Sky Blue */
    --text-dark: #121212;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-bordered: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --max-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand-font {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Wide container for navigation */
.nav-container {
    max-width: 98% !important;
    padding: 0 2.5rem !important;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-bordered);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: white;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: none;
}

/* Navigation Elite Styles - Refactored for Responsiveness */
@media (min-width: 769px) {
    header nav .nav-links {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    header nav .nav-links li {
        position: relative;
        display: flex;
        align-items: center;
        padding: 0;
    }

    header nav .nav-links li.mobile-only-link {
        display: none;
    }

    header nav .nav-links a {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.8;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    header nav .nav-links a:hover {
        color: var(--azure);
        opacity: 1;
    }

    /* Dropdown styling for Desktop */
    .dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        cursor: pointer;
    }

    .dropdown-toggle i {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }

    .nav-links li:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: white;
        min-width: 220px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        padding: 0.8rem 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.2, 1, 0.2, 1);
        z-index: 2000;
        border: 1px solid rgba(0, 0, 0, 0.08);
        margin: 0;
        list-style: none;
    }

    .nav-links li:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu li {
        width: 100%;
        display: block;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.8rem 1.5rem;
        text-transform: uppercase;
        font-size: 0.75rem;
        color: #1a202c;
        background: transparent;
        text-align: center;
        border: none;
        opacity: 1;
    }

    .dropdown-menu a:hover {
        background: #f8fafc;
        color: var(--azure);
    }
}

.mobile-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
}

.mobile-only-link {
    display: none;
}

/* Hero Slider Section */
.hero-slider {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin-top: 75px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-light);
    overflow: hidden;
    /* Fix for interaction on fade transition */
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.swiper-slide-active {
    pointer-events: auto;
}


.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
    /* Background should not capture clicks */
}


.slide-container {
    position: relative;
    z-index: 10;
    /* Increased to be above background */
    /* Ensure content is above bg and any other layers */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* Vertical center */
    padding: 0 4rem;
    pointer-events: auto;
}

.modern-header-overlay {
    max-width: 800px;
    text-align: left;
    position: relative;
    z-index: 20;
    pointer-events: auto;
    /* Enable clicks on buttons/text */
}

.slide-tag {
    display: inline-block;
    background: var(--azure);
    color: white;
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 123, 189, 0.4);
}

.modern-header-overlay h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    font-weight: 800;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    letter-spacing: -3px;
    color: white;
}

.modern-header-overlay p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.slide-actions {
    position: relative;
    z-index: 30;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Elite Button Style */
.btn-modern {
    background: var(--azure);
    color: white;
    padding: 1.3rem 3.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 123, 189, 0.4);
    position: relative;
    z-index: 30;
    /* Highest level within the slide */
}


.btn-modern:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-modern i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-modern:hover i {
    transform: translateX(8px);
}

/* Swiper Controls Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition) !important;
    z-index: 100;
    /* High enough to stay on top */
}


.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.4rem !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--azure) !important;
    border-color: var(--azure);
    transform: scale(1.1);
}

.swiper-pagination {
    z-index: 50;
    pointer-events: none;
    /* Prevent container from blocking clicks */
}

.swiper-pagination-bullet {
    pointer-events: auto;
    /* Re-enable for bullets */
    background: white !important;
    opacity: 0.3 !important;
    width: 12px !important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--azure) !important;
    width: 35px !important;
    border-radius: 6px !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--azure);
    color: white;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 189, 0.3);
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Apostolados Grid */
.apostolados-grid {
    display: grid;
    /* Force 4 columns on large screens, adapt to fewer on smaller screens */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .apostolados-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        background-position: 70% 50%;
    }

    #apostolados {
        padding-top: 2.5rem;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .apostolados-grid {
        grid-template-columns: 1fr;
    }

    .card {
        height: 380px !important;
    }

    .card-info {
        transform: translateY(0) !important;
        padding: 1.5rem !important;
    }
}

.card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 430px;
    /* Desktop card height */
    cursor: pointer;
    transition: var(--transition);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card:hover img {
    transform: scale(1.1);
}

.card:hover .card-info {
    transform: translateY(0);
}

/* Notas Section Modernized */
#notas {
    background-color: #f8fafc !important;
    padding: 6rem 0 !important;
}

.notas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.nota-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.nota-image-link {
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.nota-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.nota-card img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    /* Forces consistent aspect ratio */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.nota-card:hover img {
    transform: scale(1.08);
}

.nota-card .nota-info {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nota-card .nota-info h3 {
    font-size: 1.25rem;
    color: #1a202c;
    font-weight: 600;
    /* Softer weight as requested */
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.nota-date {
    display: block;
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.nota-date i {
    margin-right: 5px;
    color: var(--primary);
    opacity: 0.8;
}

.notas-grid .nota-card .btn-nota-read {
    background: transparent !important;
    color: var(--azure) !important;
    border: 2px solid var(--azure) !important;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
}

.notas-grid .nota-card .btn-nota-read:hover {
    background: var(--azure) !important;
    color: white !important;
}

/* Boletin Section */
.newsletter-section {
    background-color: #e5e5e5;
    /* Light gray background from image */
    padding: 4rem 0;
}

.newsletter-section .container {
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.newsletter-desc {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-newsletter {
    background-color: #5bc0de;
    /* Light blue button from image */
    border-color: #5bc0de;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    /* Keep original casing */
    border-radius: 5px;
}

.btn-newsletter:hover {
    background-color: #31b0d5;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(91, 192, 222, 0.4);
}

/* Modal Boletin */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #a0aec0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e53e3e;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Multimedia Section */
.multimedia-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.video-container {
    flex: 1.5;
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.multimedia-links {
    flex: 1;
}

.media-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
}

.media-btn:hover {
    transform: translateX(10px);
    background: var(--azure);
    color: white;
}

/* Newsletter */
.newsletter-banner {
    background: var(--primary);
    padding: 6rem 0;
    color: white;
    text-align: center;
    border-radius: 40px;
    margin: 4rem 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--azure);
    color: white;
    padding: 8rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icon:hover {
    background: var(--azure);
    transform: rotate(360deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .modern-header-overlay h1 {
        font-size: 2.8rem;
    }
}

/* Mobile Specific Refinements */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 0 !important;
    }

    .logo {
        font-size: 1.3rem !important;
    }

    .header-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 1rem 2rem 1.2rem;
        gap: 0.4rem;
        z-index: 1001;
    }

    #main-header.menu-open .nav-links {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        display: block;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        color: var(--azure) !important;
    }

    /* Mobile Dropdown Styling */
    .nav-links li .dropdown-menu {
        display: none !important;
        position: static !important;
        background: #f8fafc !important;
        padding-left: 1.5rem !important;
        box-shadow: none !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .nav-links li.dropdown-active>.dropdown-menu {
        display: block !important;
    }

    .nav-links li.dropdown-active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .mobile-only-link {
        display: list-item;
    }

    .hero-slider {
        height: 82vh !important;
        margin-top: 60px !important;
    }

    .slide-container {
        padding: 0 1.5rem !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .modern-header-overlay {
        text-align: center !important;
        max-width: 100% !important;
    }

    .modern-header-overlay h1 {
        font-size: 1.85rem !important;
        margin-bottom: 1.2rem !important;
        letter-spacing: -1px !important;
        line-height: 1.2 !important;
    }

    .modern-header-overlay p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
    }

    .btn-modern {
        padding: 1rem 1.5rem !important;
        font-size: 0.85rem !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
        /* Hide arrows on mobile to save space, use swipe */
    }

    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }

    .swiper-pagination-bullet-active {
        width: 20px !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .multimedia-flex {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    /* Footer Mobile Alignment */
    footer {
        text-align: center;
        padding: 5rem 0 3rem;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-col p i {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* Global Gallery & Album Styles */
.gallery-section {
    padding: 6rem 0;
    background: #fbfbfc;
    width: 100%;
}

.album-public-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-top: 1rem;
    width: 100%;
}

.album-card-public {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.album-card-public:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.album-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.album-card-public:hover .album-image img {
    transform: scale(1.1);
}

.album-card-public .album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 167, 206, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease;
}

.album-card-public:hover .album-overlay {
    opacity: 1 !important;
    visibility: visible !important;
}

.album-card-public .btn-view {
    background: white;
    color: #0ea7ce;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.album-card-public:hover .btn-view {
    transform: translateY(0);
}

.album-content {
    padding: 1.8rem;
    flex-grow: 1;
}

.album-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.album-content h3 {
    font-size: 1.35rem;
    color: #2d3748;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .album-public-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Más para vos Banner */
.info-banner {
    background-color: var(--azure);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.info-banner h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.info-banner-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.info-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.info-item i {
    font-size: 3rem;
}

.contacto-section {
    padding: 5rem 0;
    background: #f7fafc;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
}

.contacto-info span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--azure);
    margin-bottom: 0.8rem;
}

.contacto-info h2 {
    font-size: 2.1rem;
    margin: 0 0 1rem;
    color: var(--primary);
}

.contacto-info p {
    color: #4a5568;
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 520px;
}

.contacto-form-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 1.6rem;
}

.contacto-field {
    margin-bottom: 1rem;
}

.contacto-field label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
}

.contacto-field input,
.contacto-field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #fff;
}

.contacto-field textarea {
    resize: vertical;
    min-height: 130px;
}

.contacto-field input:focus,
.contacto-field textarea:focus {
    outline: none;
    border-color: var(--azure);
    box-shadow: 0 0 0 3px rgba(14, 167, 206, 0.15);
}

.contacto-btn {
    width: 100%;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
}

.contacto-message {
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
}

.contacto-message.success {
    background: #e6fffa;
    color: #065f46;
    border: 1px solid #99f6e4;
}

.contacto-message.error {
    background: #fff5f5;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 768px) {
    .info-banner {
        padding: 4rem 1rem;
    }

    .info-banner h2 {
        font-size: 1.8rem;
    }

    .info-banner-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }

    .info-item {
        flex-direction: column;
        font-size: 0.9rem;
        text-align: center;
    }

    .info-item i {
        font-size: 2.5rem;
    }

    .contacto-section {
        padding: 3.5rem 0;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contacto-info h2 {
        font-size: 1.75rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}