:root {
    --azul-oscuro: #0a1e3d;
    --azul-claro: #1a3a6d;
    --rojo-principal: #d32f2f;
    --blanco: #ffffff;
    --gris-fondo: #f4f7f6;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body { background-color: var(--gris-fondo); scroll-behavior: smooth; }

/* Header */
header {
    background: linear-gradient(to right, var(--azul-oscuro), var(--azul-claro));
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    color: white;
}

.navbar { display: flex; justify-content: space-between; align-items: center; }

.logo-container { display: flex; align-items: center; }
.logo-img { width: 50px; margin-right: 10px; }
.logo-text { display: flex; flex-direction: column; }
.brand { font-size: 1.5rem; font-weight: bold; letter-spacing: 1px; }
.slogan { font-size: 0.8rem; font-style: italic; color: #ffca28; }

nav ul { display: flex; list-style: none; align-items: center; }
nav ul li a { color: white; text-decoration: none; margin: 0 15px; font-weight: 500; font-size: 0.9rem; }
.btn-contacto { background: var(--rojo-principal); padding: 10px 20px; border-radius: 25px; transition: 0.3s; }
.btn-contacto:hover { background: #b71c1c; transform: scale(1.05); }

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(10, 30, 61, 0.7), rgba(10, 30, 61, 0.7)), 
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&q=80&w=2011') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 10%;
}

.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 800px; margin-bottom: 30px; }

.btn-primary { background: var(--rojo-principal); color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; margin-right: 15px; font-weight: bold; }
.btn-secondary { background: white; color: var(--azul-oscuro); padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; }

/* Services */
.services { padding: 80px 10%; text-align: center; }
.section-title { color: var(--azul-oscuro); font-size: 2rem; margin-bottom: 10px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.service-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-bottom: 4px solid var(--azul-claro); }
.service-card i { font-size: 2.5rem; color: var(--azul-claro); margin-bottom: 15px; }
.service-card h3 { margin-bottom: 10px; color: var(--azul-oscuro); font-size: 1.1rem; }
.service-card button { background: none; border: 1px solid var(--azul-claro); color: var(--azul-claro); padding: 5px 15px; cursor: pointer; margin-top: 15px; }

/* QR Section */
.qr-section { background: white; padding: 50px 0; display: flex; justify-content: center; }
.qr-card { border: 1px solid #ddd; padding: 20px; border-radius: 15px; text-align: center; width: 250px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.qr-placeholder img { width: 150px; margin: 15px 0; }

/* Footer */
footer { background: var(--azul-oscuro); color: white; padding: 60px 10% 20px; }
.footer-container { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-form { flex: 2; min-width: 300px; }
.contact-info { flex: 1; min-width: 250px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 4px; border: none; }
.btn-submit { background: var(--rojo-principal); color: white; border: none; padding: 15px 30px; cursor: pointer; width: 100%; font-weight: bold; }

.info-item { display: flex; align-items: center; margin-bottom: 20px; }
.info-item i { font-size: 1.5rem; margin-right: 15px; color: #ffca28; }
.info-item a { color: white; text-decoration: none; }

/* Estilos para la sección Blog */
.blog-section {
    padding: 60px 10%;
    background-color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    background: var(--azul-oscuro);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 3rem;
    color: #ffca28; /* Color amarillo/naranja del logo */
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    color: var(--azul-claro);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.blog-content ul {
    list-style: none;
    margin-bottom: 15px;
}

.blog-content ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
    position: relative;
    padding-left: 20px;
}

.blog-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rojo-principal);
    font-weight: bold;
}

.p-tip {
    background: #fff3e0;
    padding: 10px;
    border-left: 4px solid #ffca28;
    font-size: 0.85rem;
    font-style: italic;
    color: #555;
}

/* Estilos para Acordeones de Servicios */
.services-container {
    max-width: 1000px;
    margin: 40px auto;
    text-align: left;
}

.service-category h3 {
    background: var(--azul-oscuro);
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
}

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-bottom: 1px solid #ddd;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p { padding: 15px 0; font-size: 0.9rem; color: #666; }

/* Estilos para Testimonios */
.testimonials { padding: 60px 10%; background: var(--gris-fondo); text-align: center; }

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 45%;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--rojo-principal);
}

.testimonial-card h4 { color: var(--azul-oscuro); margin-top: 10px; }
.testimonial-card span { color: var(--rojo-principal); font-size: 0.8rem; }

.services-section {
    padding: 60px 5%;
    background-color: #f4f7f6;
}

.section-title {
    text-align: center;
    color: #0a1e3d;
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion {
    background-color: #ffffff;
    color: #0a1e3d;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.accordion i {
    margin-right: 15px;
    color: #d32f2f; /* Rojo profesional */
    font-size: 1.2rem;
}

.active, .accordion:hover {
    background-color: #0a1e3d;
    color: #ffffff;
}

.active i {
    color: #ffca28; /* Amarillo para resaltar cuando está activo */
}

.panel {
    padding: 0 20px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-top: 1px solid #eee;
}

.panel p {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

/* Contenedor Flotante */
.qr-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Icono que activa el QR */
.qr-icon {
    background: #d32f2f; /* Rojo profesional */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.qr-icon:hover {
    transform: scale(1.1);
}

/* Tarjeta de Información del QR */
.qr-content {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    width: 220px;
    margin-bottom: 15px;
    border-top: 5px solid #0a1e3d; /* Azul marino */
    display: none; /* Se activa con JS */
    position: relative;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.qr-content h3 { color: #0a1e3d; font-size: 1.1rem; margin-bottom: 5px; }
.qr-tagline { color: #ffca28; font-size: 0.75rem; font-style: italic; margin-bottom: 5px; font-weight: bold; }
.qr-job { font-size: 0.85rem; color: #444; font-weight: bold; }
.qr-image img { width: 130px; margin: 10px 0; border: 1px solid #eee; padding: 5px; }
.qr-footer { font-size: 0.75rem; color: #666; }

/* Botón cerrar */
.close-qr {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

/* Contenedor Principal */
.floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Estilo de los Iconos Circulares */
.icon-trigger, .whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.qr-trigger { background-color: #0a1e3d; } /* Azul Marino */
.whatsapp-btn { background-color: #25d366; } /* Verde WhatsApp */

.icon-trigger:hover, .whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Tarjeta de Información QR */
.qr-card {
    background: white;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    border-top: 5px solid #d32f2f; /* Rojo Profesional */
    display: none; /* Se activa con JS */
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.qr-card h3 { color: #0a1e3d; font-size: 1.1rem; margin: 0; }
.tagline { color: #ffca28; font-size: 0.7rem; font-weight: bold; font-style: italic; }
.role { font-size: 0.85rem; color: #555; font-weight: bold; margin: 5px 0; }
.qr-box img { width: 140px; border: 1px solid #f0f0f0; padding: 5px; }
.footer-text { font-size: 0.75rem; color: #888; }

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #ccc;
}
/* Contenedor principal en la esquina */
.estuconta-float-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Segoe UI', sans-serif;
}

/* Botón principal circular */
.main-float-btn {
    width: 60px;
    height: 60px;
    background-color: #0a1e3d; /* Azul Marino Estuconta */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.main-float-btn.active {
    transform: rotate(45deg);
    background-color: #d32f2f; /* Cambia a rojo al abrirse */
}

/* Contenedor de opciones (WhatsApp y QR) */
.float-options {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Items del menú */
.option-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.option-label {
    background: white;
    padding: 5px 12px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.option-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.qr-color { background-color: #d32f2f; } /* Rojo */
.ws-color { background-color: #25d366; } /* Verde WhatsApp */

/* Tarjeta del Código QR */
.qr-float-card {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    width: 200px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: none;
    text-align: center;
    border-top: 5px solid #0a1e3d;
}

.qr-card-header { display: flex; justify-content: space-between; align-items: center; }
.qr-card-header h3 { font-size: 1rem; color: #0a1e3d; margin: 0; }
.close-card { cursor: pointer; font-size: 20px; color: #ccc; }
.qr-tagline { font-size: 0.7rem; color: #ffca28; font-weight: bold; margin-bottom: 10px; }
.qr-img-container img { width: 130px; margin: 10px 0; }
.qr-footer { font-size: 0.8rem; font-weight: bold; color: #555; }

.main-footer {
    background-color: #0a1e3d; /* Azul Marino */
    color: white;
    padding: 60px 10% 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-form-section, .footer-info-section {
    flex: 1;
    min-width: 300px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-left: 4px solid #d32f2f; /* Rojo */
    padding-left: 15px;
}

.footer-title span {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    color: #ffca28; /* Amarillo */
}

/* Estilos del Formulario */
.estuconta-form input, 
.estuconta-form select, 
.estuconta-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #1a3a6d;
    background-color: #f9f9f9;
    color: #333;
}

.btn-submit-footer {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 15px 30px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-submit-footer:hover {
    background-color: #b71c1c;
}

/* Estilos de Contacto */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-link, .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.contact-link i, .contact-item i {
    color: #ffca28;
    font-size: 1.4rem;
}

.contact-link:hover {
    color: #ffca28;
}

.footer-map-placeholder {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    text-align: center;
}

.footer-map-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d32f2f;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #aaa;
}

.main-header {
    background-color: #0a1e3d;
    padding: 10px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #ffca28; /* Amarillo del logo */
}

.btn-contacto-nav {
    background-color: #d32f2f;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-contacto-nav:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}

/* Compensación de scroll para que el encabezado no tape el título de la sección */
section {
    scroll-margin-top: 80px;
}

/* Paleta de Colores Estuconta */
:root {
    --azul-pro: #0a1e3d;
    --rojo-pro: #d32f2f;
    --dorado: #ffca28;
    --gris-fondo: #f8f9fa;
}

/* 1. Centro de Información */
.info-center { padding: 80px 10%; background: white; }
.main-title { text-align: center; color: var(--azul-pro); font-size: 2.5rem; }
.main-subtitle { text-align: center; color: #666; margin-bottom: 50px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.info-card { 
    background: #fff; border-radius: 12px; border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s;
}

.info-card:hover { transform: translateY(-10px); border-color: var(--azul-pro); }

.card-header { 
    background: var(--azul-pro); color: white; padding: 25px; 
    border-radius: 11px 11px 0 0; text-align: center;
}

.card-header i { font-size: 2.5rem; color: var(--dorado); margin-bottom: 10px; }

.card-body { padding: 30px; }
.card-body ul { list-style: none; margin-bottom: 20px; }
.card-body li { margin-bottom: 12px; font-size: 0.95rem; position: relative; padding-left: 25px; }
.card-body li::before { content: "✓"; position: absolute; left: 0; color: var(--rojo-pro); font-weight: bold; }

.card-tip { background: #fff8e1; padding: 10px; border-left: 4px solid var(--dorado); font-size: 0.85rem; font-style: italic; }

/* 2. ¿Por qué elegirnos? */
.why-us-modern { padding: 80px 10%; background: var(--gris-fondo); }
.why-content { display: flex; align-items: center; gap: 50px; }
.why-text { flex: 1; }
.why-text h2 { color: var(--azul-pro); font-size: 2.2rem; margin-bottom: 10px; }
.tagline { color: var(--rojo-pro); font-weight: bold; margin-bottom: 40px; }

.feature-box { display: flex; gap: 20px; margin-bottom: 30px; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.feature-box:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

.feature-icon { background: var(--azul-pro); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }

.feature-info h4 { color: var(--azul-pro); margin-bottom: 5px; }
.feature-info p { font-size: 0.9rem; color: #555; }

.why-image { flex: 1; height: 450px; background: url('https://images.unsplash.com/photo-1554224155-8d041322b592?auto=format&fit=crop&q=80&w=1000') center/cover; border-radius: 20px; position: relative; }
.image-overlay { position: absolute; bottom: 20px; right: -20px; background: var(--rojo-pro); color: white; padding: 20px; border-radius: 10px; font-weight: bold; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
    background: var(--azul-pro);
    border-radius: 0px;
    color: white;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--dorado);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* --- RESPONSIVIDAD PARA EL ENCABEZADO --- */

/* Ocultar el icono de menú en computadoras */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Aparece en móviles */
    }

    .nav-links {
        display: none; /* Se oculta por defecto */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0a1e3d;
        padding: 20px 0;
        text-align: center;
        gap: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    /* Clase que activaremos con JavaScript */
    .nav-links.active {
        display: flex;
    }

    .logo-text .brand {
        font-size: 1.2rem;
    }
    
    .logo-text .slogan {
        font-size: 0.7rem;
    }
}

/* --- AJUSTES BASE --- */
.main-header {
    height: 70px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #0a1e3d;
}

.menu-toggle {
    display: none; /* Oculto en computadoras */
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1100;
}

/* --- AJUSTES PARA MÓVIL (Pantallas menores a 768px) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Aparece en teléfonos */
    }

    /* Ocultamos la lista de navegación original */
    .nav-links {
        display: none; 
        flex-direction: column;
        position: fixed;
        top: 70px; /* Debajo del header */
        left: 0;
        width: 100%;
        background-color: #0a1e3d;
        padding: 20px 0;
        text-align: center;
        gap: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Clase que activará el JavaScript para mostrar el menú */
    .nav-links.active {
        display: flex;
    }

    /* Reducir tamaño de logo en móvil para que quepa todo */
    .logo-img {
        width: 35px;
    }

    .brand {
        font-size: 1rem;
    }

    .slogan {
        font-size: 0.6rem;
    }

    /* Ajuste de la sección Hero (el texto principal) */
    .hero h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .hero p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}