/* ==========================================================================
   1. VARIABLES GLOBALES Y RESET
   ========================================================================== */
/* ==========================================================================
   1. VARIABLES GLOBALES Y RESET
   ========================================================================== */
:root {
    /* --- Colores Base (Neo-Brutalismo) --- */
    --bg-base: #F3F4F6;
    --surface: #FFFFFF;
    --text-main: #09090B;
    --text-muted: #52525B;
    --border-heavy: #09090B;
    --accent: #F97316;

    /* --- Paleta Neón (Efecto Tornasol) --- */
    --neon-blue: #0044FF;
    --neon-purple: #B620E0;
    --neon-orange: #FF7B00;
    
    /* Degradado cíclico para las animaciones */
    --neon-gradient: linear-gradient(
        90deg, 
        var(--neon-blue) 0%, 
        var(--neon-purple) 25%, 
        var(--neon-orange) 50%, 
        var(--neon-purple) 75%, 
        var(--neon-blue) 100%
    );
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   2. ESTILOS BASE DEL CUERPO
   ========================================================================== */
body {
    background-color: var(--bg-base);
    color: var(--text-main);
    overflow-x: hidden;
    /* Patrón de cuadrícula de plano técnico */
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ==========================================================================
   3. NAVEGACIÓN Y HEADER DINÁMICO
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 1. Quitamos el padding vertical para adelgazar la barra por completo */
    padding: 0 5%; 
    min-height: 70px; /* Altura fija y delgada */
    background-color: var(--surface);
    border-bottom: 3px solid var(--border-heavy);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    min-height: 55px; /* Aún más delgada al scrollear */
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
}


/* --- CLASE MAESTRA: El motor del efecto Tornasol y el Molde del Logo --- */
.logo-animado {
    /* Estado NORMAL: Color oscuro estático (tu color base) */
    background: var(--text-main);
    
    /* Usamos tu SVG como "molde" para recortar el fondo */
    -webkit-mask-image: url('../images/happy.svg'); 
    mask-image: url('../images/happy.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center left; 
    mask-position: center left;
    
    transition: transform 0.2s ease, background 0.3s ease;
}
.logo-animado:hover {
    background: var(--neon-gradient);
    background-size: 200% auto;
    animation: resplandorTornasol 3s linear infinite;
}

/* Animación infinita del fondo de colores */
@keyframes resplandorTornasol {
    0% { background-position: 0% center; }
    100% { background-position: -200% center; }
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.main-logo {
    height: 150px; /* El logo se mantiene gigante */
    width: 220px; 
    display: block;
    
    /* 2. EL TRUCO: Lo separamos del techo y le damos margen negativo abajo.
       Esto hace que la barra ignore el tamaño real del logo y permita que "cuelgue" por fuera. */
    margin-top: -30px; 
    margin-bottom: -25px; 
    
    transition: transform 0.2s ease, height 0.3s ease, margin-bottom 0.3s ease, margin-top 0.3s ease;
}

header.scrolled .main-logo {
    height: 65px; 
    margin-top: 5px;
    margin-bottom: -5px; /* Cuelga un poco menos */
}

.main-logo:hover, .footer-logo:hover {
    transform: scale(1.02);
}
/* ==========================================================================
   4. SISTEMA DE BOTONES
   ========================================================================== */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--surface);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    border: 3px solid var(--border-heavy);
    box-shadow: 6px 6px 0px var(--border-heavy);
    transition: all 0.15s ease-in-out;
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px var(--border-heavy);
    background-color: var(--border-heavy);
    color: var(--surface);
}

.btn-primary:active {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px var(--border-heavy);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   5. SECCIÓN HERO Y VISUALIZADOR 3D
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 140px 5% 0 5%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--surface);
    color: var(--text-main);
    border: 2px solid var(--border-heavy);
    box-shadow: 3px 3px 0px var(--border-heavy);
    font-size: 0.875rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-tag:hover {
    /* Degradado holográfico (Cian, Morado, Rosa, Amarillo y vuelve a Cian) */
    background: linear-gradient(
        110deg, 
        #9DF2F8 0%, 
        #D8A7F4 25%, 
        #F7A8D8 50%, 
        #F5F7A8 75%, 
        #9DF2F8 100%
    );
    /* Hacemos que el fondo sea el doble de ancho para poder desplazarlo */
    background-size: 200% auto; 
    color: var(--text-main);
    
    /* El motor que mueve el color de izquierda a derecha sin parar */
    animation: resplandorTornasol 2s linear infinite;
    
    /* Efecto neo-brutalista de elevación */
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0px var(--border-heavy);
    cursor: pointer;
}
@keyframes resplandorTornasol {
    0% { background-position: 0% center; }
    100% { background-position: -200% center; }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

#hero-canvas-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}
.hero-disclaimer {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-weight: 500;
}

/* ==========================================================================
   6. INDICADOR DE ARRASTRE 3D
   ========================================================================== */
.drag-indicator {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--surface);
    border: 2px solid var(--border-heavy);
    box-shadow: 4px 4px 0px var(--border-heavy);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-main);
    z-index: 15;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drag-indicator svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   7. TARJETA DE TRANSFORMACIÓN 2D A 3D
   ========================================================================== */
.transformation-card {
    position: absolute;
    top: 15%;
    right: 13%;
    background-color: var(--surface);
    border: 3px solid var(--border-heavy);
    box-shadow: 6px 6px 0px var(--border-heavy);
    padding: .5rem;
    z-index: 20;
    width: 90%;
    max-width: 400px;
}

.transform-header {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-heavy);
    padding-bottom: 0.5rem;
}

.transform-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.transform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.transform-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.client-logo-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-base);
    border: 2px solid var(--border-heavy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.client-logo-box svg, .client-logo-box img {
    max-width: 100%;
    max-height: 100%;
}

.transform-arrow {
    width: 24px;
    height: 24px;
    color: var(--text-main);
}

.cad-badge {
    padding: 0.5rem 1rem;
    background-color: var(--text-main);
    color: var(--surface);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   8. CINTA DE CONFIANZA (TRUST BAR)
   ========================================================================== */
.trust-bar {
    position: relative;
    overflow: hidden;
    background-color: var(--surface);
    padding: 4rem 5%;
    text-align: center;
    border-top: 3px solid var(--border-heavy);
    border-bottom: 3px solid var(--border-heavy);
}

.trust-bar p, .trust-logos {
    position: relative;
    z-index: 10;
}

.trust-bar p {
    color: var(--text-main);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400%;
    width: auto;
    opacity: 0.05;
    filter: grayscale(100%);
    pointer-events: none;
    z-index: 0;
}

.trust-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 500%; 
    max-height: 5000px;
    width: 600px; 
    
    -webkit-mask-position: center; 
    mask-position: center;
    
    opacity: 0.15; /* Sutil en estado normal */
    pointer-events: none; /* No estorba a los clics del usuario */
    z-index: 0;
    transition: opacity 0.4s ease;
}

/* Se enciende el tornasol al pasar el mouse por la sección entera de la cinta */
.trust-bar:hover .trust-watermark {
    background: var(--neon-gradient);
    background-size: 200% auto;
    animation: resplandorTornasol 3s linear infinite;
    opacity: 0.35; /* Brilla un poco más para hacerse notar */
}

/* ==========================================================================
   9. SECCIÓN MÚSCULO TECNOLÓGICO
   ========================================================================== */
.tech-muscle {
    padding: 8rem 5%;
    background-color: var(--bg-base);
    border-bottom: 3px solid var(--border-heavy);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background-color: var(--surface);
    padding: 3rem 2rem;
    border: 3px solid var(--border-heavy);
    box-shadow: 8px 8px 0px var(--border-heavy);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tech-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--border-heavy);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    transition: color 0.15s ease, transform 0.15s ease;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.tech-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--accent);
}

.tech-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tech-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   10. SECCIÓN DE SERVICIOS
   ========================================================================== */
.services-section {
    padding: 8rem 5%;
    background-color: var(--bg-base);
    border-bottom: 3px solid var(--border-heavy);
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 8rem auto;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.service-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--border-heavy);
}

.service-image-placeholder {
    flex: 1;
    min-height: 400px;
    background-color: var(--surface);
    border: 3px solid var(--border-heavy);
    box-shadow: 12px 12px 0px var(--border-heavy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--text-muted);
    opacity: 0.5;
}
/* --- Galería Interactiva Neo-Brutalista --- */
.brutal-gallery,
.service-image-placeholder,
.gallery-item {
    cursor: default; 
}

/* Efecto físico de "hundimiento" al pasar el mouse */
.brutal-gallery:hover {
    transform: translate(4px, 4px);
    box-shadow: 8px 8px 0px var(--border-heavy);
}

/* Posicionamiento de las dos imágenes */
.brutal-gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Estado inicial de la segunda foto (ligeramente ampliada y transparente) */
.img-back {
    opacity: 0;
    transform: scale(1.1);
}

/* Al pasar el mouse: la foto 1 desaparece y la 2 se revela enfocándose */
.brutal-gallery:hover .img-front {
    opacity: 0;
}

.brutal-gallery:hover .img-back {
    opacity: 1;
    transform: scale(1);
}

/* Animación de la etiqueta de texto inferior */
.brutal-gallery .image-overlay {
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 10; /* Asegura que el texto siempre esté encima de las fotos */
}

.brutal-gallery:hover .image-overlay {
    background-color: var(--accent); /* Cambia al color naranja/acento */
    padding-bottom: 1.5rem; /* Crece un poco hacia arriba */
    color: var(--surface);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: var(--border-heavy);
    text-align: center;
    color: var(--surface);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* ==========================================================================
   SECCIÓN DE GALERÍA Y MUESTRARIO
   ========================================================================== */
.gallery-section {
    /* Usamos el fondo grisáceo base para que las fotos resalten más */
    background-color: var(--bg-base); 
    padding: 6rem 5%;
    border-bottom: 3px solid var(--border-heavy);
}

.gallery-grid {
    display: grid;
    /* Esto hace que la cuadrícula sea responsiva automáticamente sin media queries extras */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 280px; /* Altura fija para que todas las fotos se vean del mismo tamaño */
    background-color: var(--surface);
    border: 3px solid var(--border-heavy);
    box-shadow: 6px 6px 0px var(--border-heavy);
    overflow: hidden; /* Evita que las fotos se salgan de la caja */
}

/* Ajuste específico para la etiqueta negra inferior dentro de la galería */
.gallery-item .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: var(--border-heavy);
    color: var(--surface);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-align: center;
}

/* ==========================================================================
   11. PIE DE PÁGINA (FOOTER)
   ========================================================================== */
.footer-section {
    background-color: var(--surface);
    padding: 6rem 5% 2rem 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--border-heavy);
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.footer-contact h4 {
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid var(--text-main);
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Control del logo SVG en el footer */
.footer-logo {
    height: 100px; /* Puedes subirlo a 70px o 80px si quieres que sea más imponente */
    width: auto;
    display: block;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.footer-logo:hover {
    transform: scale(1.02);
}

/* ==========================================
   REDES SOCIALES EN EL FOOTER
   ========================================== */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--surface);
    color: var(--text-main);
    border: 2px solid var(--border-heavy);
    box-shadow: 3px 3px 0px var(--border-heavy);
    border-radius: 0; /* Mantiene el estilo rudo / neo-brutalista */
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}
/* Efecto Tornasol original (tonos pastel) al pasar el mouse por las redes sociales */
.social-icon:hover {
    background: linear-gradient(
        110deg, 
        #9DF2F8 0%, 
        #D8A7F4 25%, 
        #F7A8D8 50%, 
        #F5F7A8 75%, 
        #9DF2F8 100%
    );
    background-size: 200% auto;
    animation: resplandorTornasol 2s linear infinite;
    color: var(--text-main); /* El ícono se mantiene oscuro para contrastar con el fondo claro */
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--border-heavy);
    border-color: var(--border-heavy);
}

/* ==========================================================================
   12. BOTONES FLOTANTES (WHATSAPP Y SCROLL TOP)
   ========================================================================== */
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 0;
    border: 3px solid var(--border-heavy);
    box-shadow: 6px 6px 0px var(--border-heavy);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.floating-wpp svg {
    width: 35px;
    height: 35px;
}

.floating-wpp:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px var(--border-heavy);
}

.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--surface);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border-radius: 0;
    border: 3px solid var(--border-heavy);
    box-shadow: 6px 6px 0px var(--border-heavy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.15s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top:hover {
    background-color: var(--border-heavy);
    color: var(--surface);
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px var(--border-heavy);
}

/* ==========================================================================
   13. UTILIDADES Y ANIMACIONES DE SCROLL
   ========================================================================== */
.hidden-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.show-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   14. DISEÑO RESPONSIVO (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        align-items: flex-start;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    #hero-canvas-container {
        position: relative;
        width: 100%;
        height: 45vh;
        min-height: 350px;
        opacity: 1;
        margin-bottom: 2rem;
    }
    
    .transformation-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin: 0 auto;
    }

    .floating-wpp, .scroll-to-top {
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .scroll-to-top {
        bottom: 90px;
    }
    header {
        padding: 0 4%; /* Un poco menos de margen a los lados */
    }
    
    .main-logo {
        width: 130px; /* Hacemos el logo un poco más angosto para que quepa el botón */
        height: 60px;
        margin-top: 5px;
        margin-bottom: -10px;
    }

    header.scrolled .main-logo {
        height: 50px;
        width: 110px;
        margin-top: 0;
        margin-bottom: -5px;
    }

    /* --- 2. Corrección de la sección de Servicios (Muestrario La Michoacana) --- */
    .service-row, 
    .service-row.reverse {
        flex-direction: column; /* Apila la imagen arriba y el texto abajo */
        gap: 1.5rem;
    }

    .service-image-placeholder {
        width: 100%; /* Toma todo el ancho de la pantalla */
        min-height: 280px; /* Le da una altura fija para que la caja negra se vea bien proporcionada mientras subes las fotos */
    }

    .service-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .service-content h3 {
        font-size: 1.5rem; /* Ajusta el tamaño del título para que no se desborde */
    }
}