/* =====================
   VARIABLES Y ESTILOS GLOBALES
   ===================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3B9FD9;      /* Azul Milán */
    --secondary-color: #6B1C33;    /* Rojo/Granate */
    --accent-color: #E8F0F7;       /* Azul claro */
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --border-gray: #E0E0E0;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* =====================
   BOTÓN FLOTANTE WHATSAPP
   ===================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    animation: none;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =====================
   CONTENEDOR
   ===================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   NAVEGACIÓN
   ===================== */

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--primary-color);
    font-weight: 700;
}

/* Iconos Font Awesome */
.logo-icon.fas {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* =====================
   SECCIÓN HERO
   ===================== */

.hero {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: slideInRight 0.8s ease;
}

/* =====================
   GALERÍA DE IMÁGENES
   ===================== */

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    max-height: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(59, 159, 217, 0.25);
    background: var(--light-gray);
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    top: 0;
    left: 0;
}

.gallery-image.active {
    opacity: 1;
}

.gallery-btn {
    display: none;
}

.gallery-prev {
    display: none;
}

.gallery-next {
    display: none;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid white;
}

.dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.eye-icon {
    display: none;
}

.hero-eye-image {
    display: none;
}

/* =====================
   BOTONES
   ===================== */

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid;
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #2B8FC9;
    border-color: #2B8FC9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 159, 217, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* =====================
   BANNER ATENCIÓN OFTALMOLÓGICA
   ===================== */

.banner-oftalmologico {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a6fa0 0%, #2587be 30%, #3B9FD9 70%, #5bb8ed 100%);
    position: relative;
    overflow: hidden;
}

.banner-oftalmologico::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse-banner 3s ease-in-out infinite;
}

.banner-oftalmologico::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    animation: pulse-banner 3s ease-in-out 1.5s infinite;
}

@keyframes pulse-banner {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.banner-oftalmo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.banner-oftalmo-icon {
    font-size: 70px;
    color: rgba(255, 255, 255, 0.9);
    animation: bounce-icon 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.banner-oftalmo-text {
    text-align: center;
    color: var(--white);
}

.banner-badge {
    display: inline-block;
    background: #FFD700;
    color: #1a6fa0;
    font-weight: 800;
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: glow-badge 2s ease-in-out infinite;
}

@keyframes glow-badge {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.9), 0 0 60px rgba(255, 215, 0, 0.4); }
}

.banner-oftalmo-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 6px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.banner-oftalmo-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: #FFD700;
}

.banner-horario {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-horario i {
    font-size: 19px;
    color: #FFD700;
}

.banner-oftalmo-icon-secondary {
    font-size: 65px;
    color: rgba(255, 215, 0, 0.7);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-oftalmologico {
        padding: 40px 0;
    }

    .banner-oftalmo-content {
        flex-direction: column;
        gap: 20px;
    }

    .banner-oftalmo-icon {
        font-size: 55px;
    }

    .banner-oftalmo-text h2 {
        font-size: 32px;
    }

    .banner-oftalmo-text h3 {
        font-size: 20px;
    }

    .banner-horario {
        font-size: 15px;
        padding: 8px 18px;
    }

    .banner-oftalmo-icon-secondary {
        display: none;
    }
}

/* =====================
   SECCIÓN SERVICIOS
   ===================== */

.servicios {
    padding: 60px 0;
    background: var(--white);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.servicio-card {
    background: var(--light-gray);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.servicio-card:hover {
    background: var(--accent-color);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.servicio-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);
    transition: var(--transition);
}

.servicio-card:hover .servicio-icon {
    color: #2B8FC9;
    transform: scale(1.2);
}

.servicio-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.servicio-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================
   SECCIÓN PROMOCIONES
   ===================== */

.promociones {
    padding: 60px 0;
    background: var(--white);
}

.promociones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.promo-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 159, 217, 0.2);
}

.promo-image {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    background: var(--white);
}

.promo-card:hover .promo-image {
    transform: scale(1.05);
}

/* =====================
   SECCIÓN QUIÉNES SOMOS
   ===================== */

.quienes {
    padding: 100px 0;
    background: var(--light-gray);
}

.quienes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quienes-text h2 {
    margin-bottom: 30px;
}

.quienes-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.quienes-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.image-placeholder {
    font-size: 150px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--primary-color);
}

.image-placeholder i {
    color: var(--primary-color);
    transition: var(--transition);
}

.image-placeholder:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* =====================
   SECCIÓN CONTACTO
   ===================== */

.contacto {
    padding: 60px 0;
    background: var(--white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.contacto-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.contacto-card:hover {
    background: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contacto-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.contacto-card:hover .contacto-icon {
    color: #2B8FC9;
    transform: scale(1.15);
}

.contacto-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.contacto-card p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contacto-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contacto-card a:hover {
    color: var(--primary-color);
}

.phone-secondary {
    font-size: 14px;
    color: var(--text-light);
}

/* =====================
   MAPA DE UBICACIÓN
   ===================== */

.mapa-ubicacion {
    padding: 60px 0;
    background: var(--light-gray);
}

.mapa-ubicacion .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.mapa-ubicacion .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.mapa-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
}

.mapa-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

@media (max-width: 768px) {
    .mapa-ubicacion {
        padding: 40px 0;
    }

    .mapa-container iframe {
        height: 300px;
    }
}

/* =====================
   FOOTER
   ===================== */

.footer {
    background: linear-gradient(135deg, var(--text-dark), #1a6fa0);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* =====================
   ANIMACIONES
   ===================== */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* =====================
   MEDIA QUERIES - TABLET
   ===================== */

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: var(--white);
        padding: 15px 20px;
        border-radius: 0;
        border-top: 1px solid var(--border-gray);
        transition: var(--transition);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        margin-bottom: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-eye-image {
        height: 120px;
    }

    .servicios-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        min-height: 250px;
        font-size: 100px;
    }

    .section-title {
        font-size: 32px;
    }

    .gallery-container {
        max-width: 100%;
        max-height: 380px;
    }

    .hero {
        padding: 25px 0;
    }

    .servicios,
    .contacto {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* =====================
   MEDIA QUERIES - NOTEBOOKS Y PANTALLAS MEDIANAS (1080p)
   ===================== */

@media (min-width: 769px) and (max-height: 850px) {
    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .gallery-container {
        max-width: 370px;
        max-height: 310px;
    }

    .banner-oftalmologico {
        padding: 35px 0;
    }

    .banner-oftalmo-content {
        gap: 30px;
    }

    .banner-oftalmo-icon {
        font-size: 55px;
    }

    .banner-oftalmo-icon-secondary {
        font-size: 50px;
    }

    .banner-oftalmo-text h2 {
        font-size: 32px;
    }

    .banner-oftalmo-text h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .banner-horario {
        font-size: 15px;
        padding: 7px 18px;
    }

    .servicios {
        padding: 50px 0;
    }
}

/* =====================
   MEDIA QUERIES - MÓVIL
   ===================== */

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        gap: 5px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .hero-eye-image {
        height: 80px;
    }

    .eye-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .servicio-card,
    .contacto-card {
        padding: 30px 20px;
    }

    .servicio-icon {
        font-size: 45px;
    }

    .servicio-card h3 {
        font-size: 18px;
    }

    .servicio-card p {
        font-size: 14px;
    }

    .promo-image {
        max-height: 250px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        gap: 10px;
        padding: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .footer-content {
        gap: 30px;
    }

    .quienes-text p {
        font-size: 14px;
    }

    .image-placeholder {
        font-size: 70px;
        min-height: 200px;
        padding: 30px;
    }

    .gallery-container {
        max-width: 100%;
        max-height: none;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .hero {
        padding: 20px 0;
    }

    .servicios,
    .ventajas,
    .quienes,
    .contacto {
        padding: 50px 0;
    }
}

/* =====================
   ACCESIBILIDAD
   ===================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* =====================
   MEDIA QUERIES - PANTALLAS GRANDES (27" 1440p+)
   ===================== */

@media (min-width: 2000px) {
    .container {
        max-width: 1450px;
    }

    .hero {
        padding: 150px 0;
    }

    .hero .container {
        gap: 85px;
    }

    .hero-title {
        font-size: 74px;
        margin-bottom: 28px;
    }

    .hero-subtitle {
        font-size: 23px;
        margin-bottom: 42px;
    }

    .btn {
        padding: 19px 40px;
        font-size: 20px;
    }

    .gallery-container {
        max-width: 630px;
        max-height: 540px;
    }

    .banner-oftalmologico {
        padding: 105px 0;
    }

    .banner-oftalmo-icon {
        font-size: 96px;
    }

    .banner-oftalmo-icon-secondary {
        font-size: 88px;
    }

    .banner-oftalmo-text h2 {
        font-size: 60px;
    }

    .banner-oftalmo-text h3 {
        font-size: 35px;
    }

    .banner-horario {
        font-size: 23px;
        padding: 14px 32px;
    }

    .banner-horario i {
        font-size: 25px;
    }

    .section-title {
        font-size: 50px;
        margin-bottom: 22px;
    }

    .section-subtitle {
        font-size: 21px;
    }

    .servicios,
    .promociones,
    .contacto,
    .mapa-ubicacion {
        padding: 95px 0;
    }

    .servicio-card {
        padding: 48px 40px;
    }

    .servicio-card h3 {
        font-size: 29px;
    }

    .servicio-card p {
        font-size: 18px;
    }

    .servicio-icon {
        font-size: 82px;
    }

    .promo-image {
        max-height: 350px;
    }

    .contacto-card {
        padding: 58px 48px;
    }

    .contacto-card h3 {
        font-size: 29px;
    }

    .contacto-card p {
        font-size: 18px;
    }

    .contacto-icon {
        font-size: 69px;
    }

    .mapa-container iframe {
        height: 540px;
    }

    .nav-menu a {
        font-size: 20px;
    }

    .logo {
        font-size: 31px;
    }

    .logo-image {
        height: 54px;
    }

    .whatsapp-float {
        width: 82px;
        height: 82px;
        font-size: 45px;
        bottom: 48px;
        right: 48px;
    }

    .footer {
        padding: 75px 0 28px;
    }

    .footer-section h4 {
        font-size: 23px;
    }
}
