/* ==========================================
   RESET Y ESTILOS GENERALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000; /* Fondo negro absoluto */
    color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================
   HEADER Y NAVEGACIÓN (NAV TRANSPARENTE)
   ========================================== */
.header {
    background-color: transparent; 
    padding: 20px 50px 10px 50px;
    position: absolute; 
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px; 
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-linksa.active {
    background-color: #ffffff; 
    color: #241a24; 
    border-color: #ffffff;
}

/* ==========================================
   HERO SECTION (CON DEGRADADO INICIAL)
   ========================================== */
.hero {
    min-height: 55vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px 20px; 
    background: linear-gradient(180deg, #ff409f 0%, #7e2d63 45%, #000000 100%);
    color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); 
}

.hero p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
}

/* ==========================================
   BOTONES GLOBALES (HERO)
   ========================================== */
.btn-grande {
    display: inline-block;
    background-color: #ff409f; 
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 15px rgba(255, 64, 159, 0.4);
}

.btn-grande:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.7);
    background-color: #ff57ad; 
}

/* Títulos Globales de Secciones */
.titulo-seccion {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

/* ==========================================
   SECCIÓN SERVICIOS (NEGROS POR DEFECTO -> LILA HOVER)
   ========================================== */
.servicios {
    background-color: #000000;
    padding: 60px 20px;
}

.contenedor-servicios {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tarjeta {
    background-color: #000000; /* Fondo negro fijo */
    border: 2px solid #ff409f; 
    padding: 30px 20px;
    width: 260px;
    text-align: center;
    border-radius: 12px; 
    box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s ease,
                box-shadow 0.4s ease;
}

.tarjeta:hover {
    transform: translateY(-5px);
    background-color: #241a24; /* Cambia al lila oscuro */
    
    /* Brillo rosa exterior */
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.45), 
                0 0 45px rgba(36, 26, 36, 0.3);
}

.tarjeta img {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.tarjeta:hover img {
    transform: scale(1.05);
}

.tarjeta h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff; 
}

.tarjeta p {
    font-size: 0.9rem;
    color: #dfb6cc; 
    line-height: 1.4;
}

/* ==========================================
   SECCIÓN ¿POR QUÉ ELEGIRNOS?
   ========================================== */
.porque {
    background-color: #000000;
    padding: 40px 20px 80px 20px;
}

.porque .titulo-seccion::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff409f;
    margin: 8px auto 0 auto;
}

.contenedor-porque {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.porque .item {
    background-color: #ffffff;
    color: #140e14;
    padding: 20px;
    width: 240px;
    border-radius: 12px; 
    text-align: left;
    border-left: 5px solid #ff409f; 
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================
   SECCIÓN NUESTRO PROCESO
   ========================================== */
.proceso {
    background-color: #0b070b;
    padding: 60px 20px;
}

.pasos {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.paso {
    background-color: #000000;
    border: 1px solid #261a26;
    padding: 25px 20px;
    width: 260px;
    text-align: center;
    border-radius: 6px;
}

.paso .num {
    display: inline-block;
    background-color: #ff409f;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8rem;
    width: 24px;
    height: 18px;
    line-height: 18px;
    margin-bottom: 12px;
    border-radius: 3px;
}

.paso h3 {
    font-size: 1rem;
    color: #ff409f; 
    margin-bottom: 8px;
    font-weight: 600;
}

.paso p {
    font-size: 0.85rem;
    color: #b3b3b3;
}

/* ==========================================
   SECCIÓN TESTIMONIOS (CLIENTES SATISFECHOS)
   ========================================== */
.testimonios {
    background-color: #d9d6d2; 
    color: #140e14;
    padding: 60px 20px;
}

.testimonios .titulo-seccion {
    color: #140e14;
}

.contenedor-testimonios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonio {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

/* ==========================================
   CTA FINAL (MANTENE EL DEGRADADO Y EL BOTÓN CON RESPLANDOR)
   ========================================== */
.cta {
    background: linear-gradient(90deg, #d2327d 0%, #682c53 50%, #462c44 100%);
    padding: 90px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cta p {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* El botón blanco tipo píldora con el efecto neon/glow iluminado */
.cta-btn {
    display: inline-block;
    background-color: #ffffff; 
    color: #462c44; /* Letras oscuras tomadas del fondo */
    text-decoration: none;
    padding: 12px 42px; 
    border-radius: 50px; /* Óvalo tipo píldora completo */
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    
    /* Mix de sombras: Resplandor rosa neón difuminado + sombra sutil de apoyo */
    box-shadow: 0 0 20px rgba(255, 64, 159, 0.6), 
                0 4px 10px rgba(0, 0, 0, 0.2);
    
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-btn:hover {
    transform: scale(1.04); /* Escala suave */
    background-color: #ffffff;
    /* Intensifica la iluminación al pasar el puntero */
    box-shadow: 0 0 30px rgba(255, 64, 159, 0.85), 
                0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #000000; 
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #ff409f; 
}

.footer p {
    font-size: 0.75rem;
    color: #ff409f; 
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 900px) {
    .contenedor-testimonios {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    .header {
        position: relative;
        background: #ff409f; 
    }
    .hero {
        padding-top: 60px;
        font-size: 1.9rem;
    }
    .contenedor-testimonios {
        grid-template-columns: 1fr;
    }
    .tarjeta, .porque .item, .paso {
        width: 100%;
    }
}


/* ==========================================
   nosotros
   ========================================== */

/* ==========================================
   SECCIÓN NOSOTROS (ESTILOS ESPECÍFICOS)
   ========================================== */

/* ==========================================
   RESET Y ESTILOS GENERALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000; /* Fondo negro absoluto */
    color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================
   HEADER Y NAVEGACIÓN (NAV TRANSPARENTE)
   ========================================== */
.header {
    background-color: transparent; 
    padding: 20px 50px 10px 50px;
    position: absolute; 
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px; 
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #ffffff; 
    color: #241a24; 
    border-color: #ffffff;
}

/* ==========================================
   HERO SECTION (CON DEGRADADO INICIAL)
   ========================================== */
.hero {
    min-height: 55vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px 20px; 
    background: linear-gradient(180deg, #ff409f 0%, #7e2d63 45%, #000000 100%);
    color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); 
}

.hero p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
}

/* ==========================================
   BOTONES GLOBALES (HERO)
   ========================================== */
.btn-grande {
    display: inline-block;
    background-color: #ff409f; 
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 15px rgba(255, 64, 159, 0.4);
}

.btn-grande:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.7);
    background-color: #ff57ad; 
}

/* Títulos Globales de Secciones */
.titulo-seccion {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

/* ==========================================
   SECCIÓN SERVICIOS (NEGROS POR DEFECTO -> LILA HOVER)
   ========================================== */
.servicios {
    background-color: #000000;
    padding: 60px 20px;
}

.contenedor-servicios {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tarjeta {
    background-color: #000000; /* Fondo negro fijo */
    border: 2px solid #ff409f; 
    padding: 30px 20px;
    width: 260px;
    text-align: center;
    border-radius: 12px; 
    box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s ease,
                box-shadow 0.4s ease;
}

.tarjeta:hover {
    transform: translateY(-5px);
    background-color: #241a24; /* Cambia al lila oscuro */
    
    /* Brillo rosa exterior */
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.45), 
                0 0 45px rgba(36, 26, 36, 0.3);
}

.tarjeta img {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.tarjeta:hover img {
    transform: scale(1.05);
}

.tarjeta h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff; 
}

.tarjeta p {
    font-size: 0.9rem;
    color: #dfb6cc; 
    line-height: 1.4;
}

/* ==========================================
   SECCIÓN ¿POR QUÉ ELEGIRNOS?
   ========================================== */
.porque {
    background-color: #000000;
    padding: 40px 20px 80px 20px;
}

.porque .titulo-seccion::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff409f;
    margin: 8px auto 0 auto;
}

.contenedor-porque {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.porque .item {
    background-color: #ffffff;
    color: #140e14;
    padding: 20px;
    width: 240px;
    border-radius: 12px; 
    text-align: left;
    border-left: 5px solid #ff409f; 
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================
   SECCIÓN NUESTRO PROCESO
   ========================================== */
.proceso {
    background-color: #0b070b;
    padding: 60px 20px;
}

.pasos {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.paso {
    background-color: #000000;
    border: 1px solid #261a26;
    padding: 25px 20px;
    width: 260px;
    text-align: center;
    border-radius: 6px;
}

.paso .num {
    display: inline-block;
    background-color: #ff409f;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8rem;
    width: 24px;
    height: 18px;
    line-height: 18px;
    margin-bottom: 12px;
    border-radius: 3px;
}

.paso h3 {
    font-size: 1rem;
    color: #ff409f; 
    margin-bottom: 8px;
    font-weight: 600;
}

.paso p {
    font-size: 0.85rem;
    color: #b3b3b3;
}

/* ==========================================
   SECCIÓN TESTIMONIOS (CLIENTES SATISFECHOS)
   ========================================== */
.testimonios {
    background-color: #d9d6d2; 
    color: #140e14;
    padding: 60px 20px;
}

.testimonios .titulo-seccion {
    color: #140e14;
}

.contenedor-testimonios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonio {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

/* ==========================================
   SECCIÓN INTERNA: NOSOTROS
   ========================================== */

/* 1. Bloque de Introducción Destacada (Rosa) */
/* ==========================================
   RESET Y ESTILOS GENERALES
   ========================================== */
/* ==========================================
   RESET Y ESTILOS GENERALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000; /* Fondo negro absoluto */
    color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================
   HEADER Y NAVEGACIÓN (NAV TRANSPARENTE)
   ========================================== */
.header {
    background-color: transparent; 
    padding: 20px 50px 10px 50px;
    position: absolute; 
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px; 
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #ffffff; 
    color: #241a24; 
    border-color: #ffffff;
}

/* ==========================================
   HERO SECTION (CON DEGRADADO INICIAL)
   ========================================== */
.hero {
    min-height: 55vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px 20px; 
    background: linear-gradient(180deg, #ff409f 0%, #7e2d63 45%, #000000 100%);
    color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); 
}

.hero p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
}

/* ==========================================
   BOTONES GLOBALES (HERO)
   ========================================== */
.btn-grande {
    display: inline-block;
    background-color: #ff409f; 
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 15px rgba(255, 64, 159, 0.4);
}

.btn-grande:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.7);
    background-color: #ff57ad; 
}

/* Títulos Globales de Secciones */
.titulo-seccion {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

/* ==========================================
   SECCIÓN SERVICIOS (NEGROS POR DEFECTO -> LILA HOVER)
   ========================================== */
.servicios {
    background-color: #000000;
    padding: 60px 20px;
}

.contenedor-servicios {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tarjeta {
    background-color: #000000; /* Fondo negro fijo */
    border: 2px solid #ff409f; 
    padding: 30px 20px;
    width: 260px;
    text-align: center;
    border-radius: 12px; 
    box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s ease,
                box-shadow 0.4s ease;
}

.tarjeta:hover {
    transform: translateY(-5px);
    background-color: #241a24; /* Cambia al lila oscuro */
    
    /* Brillo rosa exterior */
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.45), 
                0 0 45px rgba(36, 26, 36, 0.3);
}

.tarjeta img {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.tarjeta:hover img {
    transform: scale(1.05);
}

.tarjeta h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff; 
}

.tarjeta p {
    font-size: 0.9rem;
    color: #dfb6cc; 
    line-height: 1.4;
}

/* ==========================================
   SECCIÓN ¿POR QUÉ ELEGIRNOS?
   ========================================== */
.porque {
    background-color: #000000;
    padding: 40px 20px 80px 20px;
}

.porque .titulo-seccion::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff409f;
    margin: 8px auto 0 auto;
}

.contenedor-porque {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.porque .item {
    background-color: #ffffff;
    color: #140e14;
    padding: 20px;
    width: 240px;
    border-radius: 12px; 
    text-align: left;
    border-left: 5px solid #ff409f; 
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================
   SECCIÓN NUESTRO PROCESO
   ========================================== */
.proceso {
    background-color: #0b070b;
    padding: 60px 20px;
}

.pasos {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.paso {
    background-color: #000000;
    border: 1px solid #261a26;
    padding: 25px 20px;
    width: 260px;
    text-align: center;
    border-radius: 6px;
}

.paso .num {
    display: inline-block;
    background-color: #ff409f;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8rem;
    width: 24px;
    height: 18px;
    line-height: 18px;
    margin-bottom: 12px;
    border-radius: 3px;
}

.paso h3 {
    font-size: 1rem;
    color: #ff409f; 
    margin-bottom: 8px;
    font-weight: 600;
}

.paso p {
    font-size: 0.85rem;
    color: #b3b3b3;
}

/* ==========================================
   SECCIÓN TESTIMONIOS (CLIENTES SATISFECHOS)
   ========================================== */
.testimonios {
    background-color: #d9d6d2; 
    color: #140e14;
    padding: 60px 20px;
}

.testimonios .titulo-seccion {
    color: #140e14;
}

.contenedor-testimonios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonio {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

/* ==========================================
   SECCIÓN INTERNA: NOSOTROS
   ========================================== */

/* 1. Bloque de Introducción Destacada (Negro con Contorno Blanco) */
.intro-nosotros {
    background-color: #000000;
    padding: 40px 20px;
    text-align: center;
}

.contenedor-intro {
    max-width: 850px;
    margin: 0 auto;
    background-color: #000000; /* Fondo negro absoluto */
    border: 1px solid #ffffff; /* Contorno blanco estilizado */
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); 
}

.contenedor-intro p {
    font-size: 1.05rem;
    color: #ffffff; /* Letras blancas */
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.contenedor-intro em {
    color: #ff409f; /* Rosa de marca para el nombre */
    font-style: normal;
    font-weight: 600;
}

/* 2. Grid Flexible y Centrado de "Cómo trabajamos" */
.como-trabajamos {
    background-color: #000000;
    padding: 60px 20px;
}

.como-trabajamos .titulo-seccion::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff409f;
    margin: 8px auto 0 auto;
}

.bloque-tarjetas {
    display: flex;
    justify-content: center; /* Centra las tarjetas de la fila inferior automáticamente */
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap; 
}

.tarjeta-oscura {
    background-color: #0c080c; 
    border: 2px solid #ff409f; /* Borde rosa fijo */
    padding: 30px 22px;
    width: 320px; 
    min-height: 190px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s ease,
                box-shadow 0.4s ease;
}

/* Hover interactivo lila con resplandor neón */
.tarjeta-oscura:hover {
    transform: translateY(-5px);
    background-color: #241a24; /* Fondo lila */
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.45), 
                0 0 45px rgba(36, 26, 36, 0.3);
}

.tarjeta-oscura h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.tarjeta-oscura p {
    font-size: 0.88rem;
    color: #dfb6cc; 
    line-height: 1.5;
}

/* 3. Tarjetas de Valores (Blancas) */
.valores-seccion {
    background-color: #000000;
    padding: 40px 20px 80px 20px;
}

.contenedor-valores {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tarjeta-blanca {
    background-color: #ffffff;
    color: #000000;
    padding: 25px 20px;
    width: 320px;
    border-radius: 8px;
    border-left: 5px solid #ff409f; /* Franja rosa a la izquierda */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tarjeta-blanca h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #241a24;
    margin-bottom: 10px;
}

.tarjeta-blanca p {
    font-size: 0.88rem;
    color: #4d4d4d;
    line-height: 1.5;
}

/* ==========================================
   CTA FINAL (CON BOTÓN DEGRADADO E ILUMINADO)
   ========================================== */
.cta {
    background: linear-gradient(90deg, #d2327d 0%, #682c53 50%, #462c44 100%);
    padding: 90px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cta p {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Botón píldora con efecto glow neón */
.cta-btn {
    display: inline-block;
    background-color: #ffffff; 
    color: #462c44; 
    text-decoration: none;
    padding: 12px 42px; 
    border-radius: 50px; 
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 0 20px rgba(255, 64, 159, 0.6), 
                0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-btn:hover {
    transform: scale(1.04); 
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 64, 159, 0.85), 
                0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #000000; 
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #ff409f; 
}

.footer p {
    font-size: 0.75rem;
    color: #ff409f; 
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 900px) {
    .contenedor-testimonios {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tarjeta-oscura, .tarjeta-blanca {
        width: 100%; 
        max-width: 450px;
    }
    .contenedor-intro {
        padding: 25px 15px;
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    .header {
        position: relative;
        background: #ff409f; 
    }
    .hero {
        padding-top: 60px;
        font-size: 1.9rem;
    }
    .contenedor-testimonios {
        grid-template-columns: 1fr;
    }
    .tarjeta, .porque .item, .paso {
        width: 100%;
    }
}


/* ==========================================
   RESET Y ESTILOS GENERALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000000; /* Fondo negro absoluto */
    color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================
   HEADER Y NAVEGACIÓN (NAV TRANSPARENTE)
   ========================================== */
.header {
    background-color: transparent; 
    padding: 20px 50px 10px 50px;
    position: absolute; 
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 40px; 
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #ffffff; 
    color: #241a24; 
    border-color: #ffffff;
}

/* ==========================================
   HERO SECTION (CON DEGRADADO INICIAL)
   ========================================== */
.hero {
    min-height: 55vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px 20px; 
    background: linear-gradient(180deg, #ff409f 0%, #7e2d63 45%, #000000 100%);
    color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); 
}

.hero p {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
}

/* ==========================================
   BOTONES GLOBALES (HERO)
   ========================================== */
.btn-grande {
    display: inline-block;
    background-color: #ff409f; 
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 15px rgba(255, 64, 159, 0.4);
}

.btn-grande:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.7);
    background-color: #ff57ad; 
}

/* Títulos Globales de Secciones */
.titulo-seccion {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

/* ==========================================
   SECCIÓN SERVICIOS (NEGROS POR DEFECTO -> LILA HOVER)
   ========================================== */
.servicios {
    background-color: #000000;
    padding: 60px 20px;
}

.contenedor-servicios {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tarjeta {
    background-color: #000000; /* Fondo negro fijo */
    border: 2px solid #ff409f; 
    padding: 30px 20px;
    width: 260px;
    text-align: center;
    border-radius: 12px; 
    box-shadow: 0 0 0px rgba(0, 0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s ease,
                box-shadow 0.4s ease;
}

.tarjeta:hover {
    transform: translateY(-5px);
    background-color: #241a24; /* Cambia al lila oscuro */
    
    /* Brillo rosa exterior */
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.45), 
                0 0 45px rgba(36, 26, 36, 0.3);
}

.tarjeta img {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.tarjeta:hover img {
    transform: scale(1.05);
}

.tarjeta h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff; 
}

.tarjeta p {
    font-size: 0.9rem;
    color: #dfb6cc; 
    line-height: 1.4;
}

/* ==========================================
   SECCIÓN ¿POR QUÉ ELEGIRNOS?
   ========================================== */
.porque {
    background-color: #000000;
    padding: 40px 20px 80px 20px;
}

.porque .titulo-seccion::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff409f;
    margin: 8px auto 0 auto;
}

.contenedor-porque {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.porque .item {
    background-color: #ffffff;
    color: #140e14;
    padding: 20px;
    width: 240px;
    border-radius: 12px; 
    text-align: left;
    border-left: 5px solid #ff409f; 
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================
   SECCIÓN NUESTRO PROCESO
   ========================================== */
.proceso {
    background-color: #0b070b;
    padding: 60px 20px;
}

.pasos {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.paso {
    background-color: #000000;
    border: 1px solid #261a26;
    padding: 25px 20px;
    width: 260px;
    text-align: center;
    border-radius: 6px;
}

.paso .num {
    display: inline-block;
    background-color: #ff409f;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8rem;
    width: 24px;
    height: 18px;
    line-height: 18px;
    margin-bottom: 12px;
    border-radius: 3px;
}

.paso h3 {
    font-size: 1rem;
    color: #ff409f; 
    margin-bottom: 8px;
    font-weight: 600;
}

.paso p {
    font-size: 0.85rem;
    color: #b3b3b3;
}

/* ==========================================
   SECCIÓN TESTIMONIOS (CLIENTES SATISFECHOS)
   ========================================== */
.testimonios {
    background-color: #d9d6d2; 
    color: #140e14;
    padding: 60px 20px;
}

.testimonios .titulo-seccion {
    color: #140e14;
}

.contenedor-testimonios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonio {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

/* ==========================================
   SECCIÓN INTERNA: NOSOTROS
   ========================================== */

/* 1. Bloque de Introducción Destacada (Negro con Contorno Blanco) */
.intro-nosotros {
    background-color: #000000;
    padding: 40px 20px;
    text-align: center;
}

.contenedor-intro {
    max-width: 850px;
    margin: 0 auto;
    background-color: #000000; 
    border: 1px solid #ffffff; 
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); 
}

.contenedor-intro p {
    font-size: 1.05rem;
    color: #ffffff; 
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.contenedor-intro em {
    color: #ff409f; 
    font-style: normal;
    font-weight: 600;
}

/* 2. Grid Flexible y Centrado de "Cómo trabajamos" */
.como-trabajamos {
    background-color: #000000;
    padding: 60px 20px;
}

.como-trabajamos .titulo-seccion::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff409f;
    margin: 8px auto 0 auto;
}

.bloque-tarjetas {
    display: flex;
    justify-content: center; /* Centra las tarjetas de la fila inferior automáticamente */
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap; 
}

.tarjeta-oscura {
    background-color: #0c080c; 
    border: 2px solid #ff409f; 
    padding: 30px 22px;
    width: 320px; 
    min-height: 190px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s ease,
                box-shadow 0.4s ease;
}

.tarjeta-oscura:hover {
    transform: translateY(-5px);
    background-color: #241a24; 
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.45), 
                0 0 45px rgba(36, 26, 36, 0.3);
}

.tarjeta-oscura h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.tarjeta-oscura p {
    font-size: 0.88rem;
    color: #dfb6cc; 
    line-height: 1.5;
}

/* 3. Tarjetas de Valores (Blancas) */
.valores-seccion {
    background-color: #000000;
    padding: 40px 20px 80px 20px;
}

.contenedor-valores {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tarjeta-blanca {
    background-color: #ffffff;
    color: #000000;
    padding: 25px 20px;
    width: 320px;
    border-radius: 8px;
    border-left: 5px solid #ff409f; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tarjeta-blanca h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #241a24;
    margin-bottom: 10px;
}

.tarjeta-blanca p {
    font-size: 0.88rem;
    color: #4d4d4d;
    line-height: 1.5;
}

/* ==========================================
   SECCIÓN PORTAFOLIO (EDICIÓN PREMIUM CON DEGRADADOS)
   ========================================== */
.portafolio {
    background-color: #000000; 
    text-align: center;
    padding: 0 0 80px 0; 
}

/* Encabezado con el mismo degradado de marca del Hero */
.portafolio-header {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 40px 20px;
    background: linear-gradient(180deg, #ff409f 0%, #7e2d63 45%, #000000 100%); 
    color: #ffffff;
    margin-bottom: 40px;
}

.portafolio .titulo-seccion {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.descripcion-portafolio {
    font-size: 1.05rem;
    color: #ffffff;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.5;
}

/* GALERÍA FLEXIBLE CON CENTRADO EN LA ÚLTIMA FILA */
.grid-portafolio {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto 70px auto;
    padding: 0 20px;
}

/* ITEMS DE LA GALERÍA */
.grid-portafolio .item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #261a26;
    background-color: #0c080c;
    width: calc(25% - 21px); /* Ajusta 4 columnas restando el gap proporcional */
    min-width: 240px; 
    aspect-ratio: 3 / 4; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.grid-portafolio .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* EFECTO HOVER: REFLEJO DE LUZ ROSA NEÓN INTENSO */
.grid-portafolio .item:hover {
    transform: translateY(-6px); /* Eleva la tarjeta sutilmente */
    border-color: #ff409f; /* Cambia el contorno al rosa de marca */
    
    /* Iluminación ambiental multicapa */
    box-shadow: 0 0 15px rgba(255, 64, 159, 0.6),  
                0 0 30px rgba(255, 64, 159, 0.4),  
                0 0 45px rgba(255, 64, 159, 0.2);  
}

.grid-portafolio .item:hover img {
    transform: scale(1.04);
}

/* TARJETA EXPERIENCIA MEJORADA (BORDE DEGRADADO Y NEÓN) */
.tarjeta-experiencia {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
    padding: 2px; /* Grosor simulado del borde con degradado */
    border-radius: 50px; 
    background: linear-gradient(90deg, #ff409f 0%, #7e2d63 100%);
    box-shadow: 0 0 25px rgba(255, 64, 159, 0.5), 
                0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s ease;
}

/* Inyección de contenido manteniendo el fondo negro puro */
.tarjeta-experiencia::before {
    content: 'Contamos con más de 14 años de experiencia.';
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000; 
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 20px 35px;
    border-radius: 50px; 
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.tarjeta-experiencia:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(255, 64, 159, 0.8), 
                0 6px 20px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   CTA FINAL (CON BOTÓN DEGRADADO E ILUMINADO)
   ========================================== */
.cta {
    background: linear-gradient(90deg, #d2327d 0%, #682c53 50%, #462c44 100%);
    padding: 90px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.cta p {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-block;
    background-color: #ffffff; 
    color: #462c44; 
    text-decoration: none;
    padding: 12px 42px; 
    border-radius: 50px; 
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 0 20px rgba(255, 64, 159, 0.6), 
                0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-btn:hover {
    transform: scale(1.04); 
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 64, 159, 0.85), 
                0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #000000; 
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #ff409f; 
}

.footer p {
    font-size: 0.75rem;
    color: #ff409f; 
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 900px) {
    .contenedor-testimonios {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portafolio-header {
        min-height: 35vh;
        padding-top: 100px;
    }
    .portafolio .titulo-seccion {
        font-size: 2.1rem;
    }
    .grid-portafolio .item {
        width: calc(50% - 14px); /* Pasa a dos columnas en tablets organizando las sobrantes en el centro */
        min-width: 160px;
    }
    .tarjeta-oscura, .tarjeta-blanca {
        width: 100%; 
        max-width: 450px;
    }
    .contenedor-intro {
        padding: 25px 15px;
    }
    .tarjeta-experiencia {
        width: 90%;
    }
    .tarjeta-experiencia::before {
        font-size: 0.95rem;
        padding: 16px 20px;
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    .header {
        position: relative;
        background: #ff409f; 
    }
    .hero {
        padding-top: 60px;
        font-size: 1.9rem;
    }
    .contenedor-testimonios {
        grid-template-columns: 1fr;
    }
    .tarjeta, .porque .item, .paso {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .grid-portafolio .item {
        width: 100%; /* Una sola columna fluida en móviles pequeños */
    }
}

/* ==========================================================================
  servicios
   ========================================================================== */

.pagina-servicios {
    background-color: #000000;
    min-height: 100vh;
    padding-bottom: 80px;
    font-family: sans-serif;
}

/* Encabezado con degradado fluido hacia el negro */
.hero-precios {
    min-height: 45vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 40px 20px; 
    background: linear-gradient(180deg, #ff409f 0%, #7e2d63 45%, #000000 100%);
    color: #ffffff;
}

.hero-precios h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-precios p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   BARRA DE BÚSQUEDA Y BOTONES DE FILTRO
   ========================================================================== */
.contenedor-busqueda {
    margin-top: 30px;
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    box-sizing: border-box;
}

#inputBuscar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff409f;
    border-radius: 50px;
    padding: 14px 25px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    text-align: center;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#inputBuscar:focus {
    background-color: #000000;
    box-shadow: 0 0 15px rgba(255, 64, 159, 0.6);
}

#inputBuscar::placeholder {
    color: #dfb6cc;
    opacity: 0.7;
}

.filtros-rapidos {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-filtro {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #7e2d63;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filtro:hover, 
.btn-filtro.active {
    background-color: #ff409f;
    border-color: #ff409f;
    box-shadow: 0 0 10px rgba(255, 64, 159, 0.4);
}

/* ==========================================================================
   GRID DEL CONTENEDOR Y TARJETAS DE PRECIOS
   ========================================================================== */
.contenedor-tablas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Tarjeta individual de precios por defecto */
.tabla-precios {
    background-color: #0d0d0d; 
    border: 2px solid #261a26; /* Tono oscuro para resaltar al encenderse */
    border-radius: 16px;
    width: calc(33.333% - 20px); 
    min-width: 300px;
    max-width: 360px;
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

/* EFECTO HOVER: ELEVACIÓN Y REFLEJO DE LUZ LILA / ROSA NEÓN */
.tabla-precios:hover {
    transform: translateY(-6px); 
    border-color: #ff409f; 
    
    box-shadow: 0 0 15px rgba(255, 64, 159, 0.5),  
                0 0 30px rgba(255, 64, 159, 0.3),  
                0 0 45px rgba(255, 64, 159, 0.15); 
}

/* Títulos superiores de las tablas (Barnizados, Laminados, etc.) */
.tabla-precios h2 {
    background-color: #ff409f; 
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 15px 10px;
    margin: 0;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   ESTILOS DE LAS TABLAS INTERNAS
   ========================================================================== */
.tabla-precios table {
    width: 100%;
    border-collapse: collapse;
}

.tabla-precios th {
    background-color: #161616; 
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-bottom: 1px solid #231823;
}

.tabla-precios th:first-child, 
.tabla-precios td:first-child {
    text-align: left;
}

.tabla-precios th:last-child, 
.tabla-precios td:last-child {
    text-align: right;
}

.tabla-precios td {
    padding: 11px 20px;
    font-size: 0.9rem;
    color: #ffffff;
    border-bottom: 1px solid #141414;
}

/* Filas cebra oscuras */
.tabla-precios tr:nth-child(even) td {
    background-color: #121212; 
}

/* Precios destacados en verde neón brillante */
.tabla-precios td:last-child {
    color: #39ff14; 
    font-weight: 600;
    font-family: monospace, sans-serif;
}

.tabla-precios tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   SECCIÓN INFORMATIVA INFERIOR (COINCIDE CON image_04adc4.png)
   ========================================================================== */
.info-adicional {
    max-width: 1100px;
    margin: 60px auto 20px auto;
    padding: 0 20px;
    text-align: center;
}

.info-adicional h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 35px;
}

.info-adicional h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff409f;
    margin: 10px auto 0 auto;
}

.bloques-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Bloque individual por defecto */
.item-info {
    background-color: #0c080c;
    border: 1px solid #261a26;
    border-top: 4px solid #ff409f; /* Línea superior lila distintiva */
    padding: 30px 25px;
    width: 320px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

/* EFECTO HOVER: CONTORNO Y REFLEJO DE LUZ BLANCA PURA */
.item-info:hover {
    transform: translateY(-5px); 
    border-color: #ffffff; /* El borde se ilumina completamente en blanco */
    
    /* Resplandor ambiental blanco multicapa sobre fondo negro */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5),  
                0 0 25px rgba(255, 255, 255, 0.25), 
                0 0 40px rgba(255, 255, 255, 0.1);  
}

.item-info h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.item-info p {
    font-size: 0.88rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}

/* Resaltados internos de texto (PDF, AI, CMYK, 3mm) */
.item-info strong {
    color: #ff409f;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .tabla-precios {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .hero-precios h1 {
        font-size: 2.2rem;
    }
    .contenedor-tablas {
        gap: 20px;
    }
    .tabla-precios {
        width: 100%;
        max-width: 400px;
    }
    .item-info {
        width: 100%;
        max-width: 450px;
    }
}

/* ==========================================================================
   DISEÑO CONTACTO: CÓDIGO COMPLETO Y FINAL
   ========================================================================== */

.contacto {
    /* Degradado lineal suave limitado a 500px de altura */
    background: linear-gradient(to bottom, 
        #ff409f 0%, 
        #8a256b 15%,
        #3d1234 35%,
        #120414 50%,
        #000000 100%
    ), #000000 !important;
    background-repeat: no-repeat;
    background-size: 100% 500px;
    color: #ffffff;
    padding: 100px 20px 80px 20px; 
    text-align: center;
    font-family: sans-serif;
    min-height: 100vh;
    box-sizing: border-box;
}

.titulo-seccion {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.descripcion-contacto {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* CONTENEDOR DE TARJETAS */
.contenedor-contacto {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 50px;
    max-width: 1000px;
    margin: 60px auto 0 auto; 
    flex-wrap: wrap;
}

/* TARJETAS CON EFECTO DE LUZ LILA */
.tarjeta-contacto {
    background-color: #0f0712; 
    border: 2px solid #3d1b3a; 
    border-radius: 24px;
    padding: 45px 35px;
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease; /* Transición para el efecto de luz */
}

.tarjeta-contacto:hover {
    border-color: #bd3b9a; 
    box-shadow: 0 0 20px rgba(189, 59, 154, 0.5), 0 0 40px rgba(189, 59, 154, 0.2);
    transform: translateY(-5px);
}

.tarjeta-contacto h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 700;
}

/* FORMULARIO */
.tarjeta-contacto input, .tarjeta-contacto textarea {
    width: 100%;
    background-color: #170d1a; 
    border: 1px solid #2e1833;
    border-radius: 12px;
    padding: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* BOTÓN ENVIAR: Mantiene su tamaño */
.btn-enviar {
    width: 100%; 
    background: linear-gradient(90deg, #bd3b9a 0%, #4a143d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-enviar:hover {
    transform: scale(1.02);
}

/* ICONO FACEBOOK: TAMAÑO FIJO */
.enlace-facebook {
    display: block;
    width: 45px !important;
    height: 45px !important;
    margin: 10px auto 25px auto;
}

.enlace-facebook img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

/* MAPA Y OTROS */
.streetview {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #2e1833; 
    margin-top: 20px;
}

.streetview iframe {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .contenedor-contacto { flex-direction: column; align-items: center; }
}