/* ==========================
   VARIABLES DE COLOR
========================== */
:root {
    --fuchsia: #d300e0;     /* Fucsia para Headings y Detalles */
    --hot-pink: #d300e0;    /* Rosa intenso para hover */
    --light-pink: #FFC0CB;  /* Rosa claro para acentos sutiles */
    --dark-blue: #001524;   /* Color de Fondo de Página */
    --dark-blue-card: #022c46;   /* Color de Fondo de Página */
    --card-background-base: #181835; /* Fondo de card de respaldo */
    --gradient-blue-start: rgba(13, 13, 31, 0.0); /* Inicio del degradado transparente */
    --gradient-blue-end: rgba(13, 13, 31, 0.9);   /* Fin del degradado azul oscuro */
    --white: #FFFFFF;
    --soft-white: #f8f8f8;
}

/* ==========================
   ESTILOS BASE
========================== */
body {
    background-color: var(--dark-blue);
    color: var(--soft-white);
    font-family: 'Arial', sans-serif; 
    margin: 0;
    padding: 0;
}

.fancy-header {
    color: var(--fuchsia); 
    font-weight: 300; 
    letter-spacing: 5px; 
    font-size: 3rem;
    padding-bottom: 0.5rem;
}

/* ==========================
   MODEL CARD
========================== */
.model-card {
    background-color: var(--card-background-base);
    border: 1px solid transparent;
    position: relative; 
    overflow: hidden; 
    transition: border-color 0.3s ease;
    border-radius: 5px; 
    box-shadow: none !important; 
}

.model-card:hover {
    border-color: var(--hot-pink);
    transform: none; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.model-card-img {
    height: 350px;
    object-fit: cover;
    width: 100%;
    display: block;
    filter: brightness(0.8);
    transition: transform 0.4s ease;
    border-radius: 5px;
}

.model-card:hover .model-card-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; 
    background: linear-gradient(to top, var(--dark-blue-card) 0%, var(--gradient-blue-end) 50%, var(--gradient-blue-start) 100%);
    pointer-events: none; 
    z-index: 1;
    border-radius: 0 0 5px 5px;
}

.card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 2;
    text-align: left;
    color: var(--soft-white);
}

.card-title {
    color: var(--fuchsia);
    font-weight: 600; 
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.card-subtitle {
    color: var(--light-pink); 
    margin-bottom: 0.4rem;
    font-size: 1rem;
    font-weight: 400;
}

.card-text {
    color: var(--soft-white);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

/* ==========================
   BOTONES
========================== */
.btn-details {
    background-color: var(--fuchsia); 
    border: 1px solid var(--fuchsia);
    color: var(--dark-blue); 
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 3px; 
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    box-shadow: none;
    display: inline-block;
}

.btn-details:hover {
    background-color: var(--hot-pink); 
    border-color: var(--hot-pink);
    transform: none; 
    box-shadow: none;
    color: var(--dark-blue); 
}

.btn-filter {
    background-color: transparent;
    border: 1px solid var(--light-pink);
    color: var(--light-pink);
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    border-radius: 3px; 
    margin: 0.25rem;
    box-shadow: none;
}

.btn-filter:hover {
    background-color: var(--fuchsia);
    border-color: var(--fuchsia);
    color: var(--dark-blue); 
    transform: none; 
    box-shadow: none;
}

.btn-filter.active {
    background-color: var(--fuchsia);
    border-color: var(--fuchsia);
    color: var(--dark-blue);
    font-weight: bold;
    box-shadow: none;
}

.btn-filter.active:hover {
    background-color: var(--fuchsia);
    border-color: var(--fuchsia);
    color: var(--dark-blue);
    transform: none;
}

.text-secondary {
    color: #888 !important;
}

/* ==========================
   FOOTER
========================== */
footer {
    border-color: #333 !important;
    background-color: var(--dark-blue);
}

.detail-footer {
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ==========================
   DETALLE MODELO - PERFIL
========================== */


.profile-image-container {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.profile-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.contact-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-contact {
    min-width: 140px;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 5px;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ==========================
   DETALLE MODELO - COLUMNA DERECHA TARJETA
========================== */
.detail-card {
    background: var(--card-background-base);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.detail-card .detail-title {
    color: var(--fuchsia);
}

.detail-card .description-text {
    color: var(--soft-white);
}

.detail-card .section-subtitle {
    color: var(--light-pink);
    font-weight: 600;
}

.detail-card .detail-list li {
    margin-bottom: 0.6rem;
}

.detail-card .detail-label {
    font-weight: 600;
    color: var(--soft-white);
}

.detail-card .accent-text {
    color: var(--fuchsia);
    font-weight: 600;
}

/* ==========================
   GALERÍA DE FOTOS
========================== */
.gallery-photo {
    width: 100%;
    aspect-ratio: 1 / 1; /* 🔥 clave */
    object-fit: cover;
    border-radius: 5px;
}

.gallery-photo:hover {
    transform: scale(1.05);
}

/* ==========================
   VIDEOS
========================== */
.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 5px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--fuchsia);
    font-size: 2rem;
    pointer-events: none;
}

/* ==========================
   SECCIONES
========================== */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--fuchsia);
    margin-bottom: 0.5rem;
}

.section-divider {
    border-color: var(--fuchsia);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* ==========================
   INFO CARDS - DATOS IMPORTANTES
========================== */

.info-card {
    background: var(--card-background-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 1rem;
    min-height: 110px;
    justify-content: flex-start;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(211, 0, 224, 0.25);
}

/* Iconos grandes en fucsia */
.info-icon {
    font-size: 58px;
    color: var(--fuchsia);
    min-width: 58px;
    line-height: 1;
}

/* Título */
.info-title a {
    color: inherit;
    text-decoration: none;
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
}

/* Subtexto */
.info-sub {
    margin: 0;
    font-size: 0.85rem;
    color: var(--light-pink);
    opacity: 0.85;
}


/* ==========================
   RESPONSIVE – INFO CARDS
========================== */

/* Móviles (pantallas menores a 576px) */
@media (max-width: 576px) {
    .info-icon {
        font-size: 30px !important;
        min-width: 30px !important;
    }

    .info-title {
        font-size: 1.1rem !important;
    }

    .info-sub {
        font-size: 0.75rem !important;
    }

    .info-card {
        padding: 0.8rem !important;
    }
}

/* Tablets pequeñas (576px – 768px) */
@media (max-width: 768px) {
    .info-icon {
        font-size: 45px;
        min-width: 45px;
    }

    .info-title {
        font-size: 1.05rem;
    }
}

.btn-header {
    background-color: var(--dark-blue-card) !important; 
}
/* ==========================
   MENU MOBILE
========================== */


/* DESACTIVAR SUBRAYADO SOLO EN DESKTOP */
.desktop-title-link {
    text-decoration: none !important;
}
.desktop-title-link:hover {
    text-decoration: none !important;
}

/* OFFCANVAS CON EFECTO VIDRIO (GLASSMORPHISM) */
.glass-offcanvas {
    background: rgba(10, 10, 10, 0.75) !important;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animación suave */
.offcanvas {
    transition: transform 0.35s ease-in-out;
}

/* Hamburguesa blanca */
.navbar-toggler-icon {
    filter: invert(1);
}

/* Botones más suaves dentro del offcanvas */
.offcanvas .btn {
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

/* Títulos */
.fancy-header {
    font-family: 'Playfair Display', serif;
}


/* CSS para anunciate */
/* ==========================
   FIX GLOBAL (CRÍTICO)
========================== */

.model-card .card-body {
    position: absolute;
    bottom: 0;
}

/* ==========================
   HERO ANUNCIATE
========================== */

.anunciate-hero {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(211,0,224,0.15), transparent 70%);
}

.hero-content {
    max-width: 600px;
}

.hero-sub {
    color: #bbb;
    font-size: 1.1rem;
}

/* ==========================
   STEP CARDS
========================== */

.step-card-clean {
    background: var(--card-background-base);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.2rem 1rem; /* ↓ antes 2rem */
    text-align: center;
    transition: all .25s ease;
}

.step-card-clean h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.step-card-clean p {
    font-size: 0.75rem;
    color: #999;
}

.step-card-clean:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(211, 0, 224, 0.2);
    border-color: var(--fuchsia);
}

.step-badge {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--fuchsia);
    color: var(--dark-blue);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.step-card-clean h5 {
    color: var(--soft-white);
    margin-bottom: 10px;
}

.step-card-clean p {
    color: #bbb;
    font-size: 0.9rem;
}

/* ==========================
   TRUST BOX
========================== */

.trust-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1rem;
    border-radius: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--fuchsia);
}

/* ==========================
   BADGES
========================== */

.badge-feature {
    background: rgba(211, 0, 224, 0.15);
    color: var(--light-pink);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* ==========================
   CTA BUTTON
========================== */

.btn-cta {
    background: linear-gradient(135deg, #d300e0, #ff4df0);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all .25s ease;
    box-shadow: 0 8px 25px rgba(211,0,224,0.4);
}

/* .btn-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(211,0,224,0.6);
} */

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {
    .anunciate-hero {
        height: auto;
        padding: 60px 20px;
    }
}

.anunciate-hero .fancy-header {
    font-size: 2.2rem;
    letter-spacing: 2px;
}


/* ==========================
   CONDICIONES CARDS
========================== */

.faq-card {
    background: var(--card-background-base);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.2rem;
    height: 100%;
    transition: all .2s ease;
}

.faq-card:hover {
    border-color: var(--fuchsia);
    transform: translateY(-3px);
}

.faq-card h5 {
    color: var(--fuchsia);
    font-size: 1rem;
    margin-bottom: 8px;
}

.faq-card p {
    font-size: 0.85rem;
    color: #bbb;
    margin: 0;
}

/* ==========================
   PROMO
========================== */

.promo-box {
    background: rgba(211,0,224,0.1);
    border: 1px solid rgba(211,0,224,0.3);
    padding: 1rem;
    border-radius: 10px;
    color: var(--soft-white);
    font-size: 0.95rem;
}

/* ==========================
   HERO PLANES
========================== */

.planes-hero {
    max-width: 600px;
    margin: 0 auto;
}

.hero-sub {
    color: #bbb;
    font-size: 1rem;
}

.promo-highlight {
    background: rgba(211,0,224,0.15);
    border: 1px solid rgba(211,0,224,0.4);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    font-size: 0.9rem;
}

/* ==========================
   URGENCIA
========================== */

.urgency-text {
    color: #ff4df0;
    font-size: 0.85rem;
}

/* ==========================
   PLAN CARDS
========================== */

.plan-card {
    background: var(--card-background-base);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: all .25s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--fuchsia);
}

.plan-card.featured {
    border: 1px solid var(--fuchsia);
    box-shadow: 0 10px 30px rgba(211,0,224,0.2);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--fuchsia);
    color: var(--dark-blue);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
}

/* ==========================
   PRECIO
========================== */

.plan-price {
    margin-bottom: 10px;
}

.price-main {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--fuchsia);
}

.price-sub {
    font-size: 0.8rem;
    color: #999;
}

/* ==========================
   DESCUENTO
========================== */

.discount-info {
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    font-size: 0.75rem;
    color: #777;
    margin-right: 5px;
}

.new-price {
    font-size: 0.75rem;
    color: var(--fuchsia);
}

/* ==========================
   LISTA
========================== */

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-card li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #bbb;
}

.plan-card li i {
    color: var(--fuchsia);
    margin-right: 5px;
}

/* ==========================
   FOOTER
========================== */

.footer-custom {
    background: var(--dark-blue);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-title {
    color: var(--fuchsia);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-subtitle {
    color: var(--soft-white);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-text {
    color: #aaa;
    font-size: 0.85rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--fuchsia);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 20px 0;
}

.footer-copy {
    color: #777;
    font-size: 0.8rem;
}


/* MENU anunciate */
.btn-cta {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    border: none;
    color: #fff !important;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all .25s ease;
    box-shadow: 0 8px 25px rgba(211,0,224,0.4);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ff3355, #ff5f7a);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 77, 109, 0.4);
}

.btn-cta-price {
    background: #f1f3f5;
    border: 1px solid #dee2e6;
    color: #495057 !important;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.25s ease;
    box-shadow: none;
}

.btn-cta-price:hover {
    background: #e9ecef;
    color: #212529 !important;
    transform: translateY(-1px);
    border-color: #ced4da;
}
.nav-menu-spacing .nav-item {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-menu-spacing .nav-item:last-child {
    border-bottom: none;
}


.banner-section .fancy-header {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    text-shadow: 0 6px 18px rgba(0,0,0,0.7);
    letter-spacing: 1px;
}

.navbar .fancy-header {
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding-bottom: 0;
}

.banner-section p {
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.banner-section {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.5);
    top: 0;
    left: 0;
}

.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* 🔥 TÍTULO RESPONSIVE REAL */
.banner-title {
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    text-shadow: 0 6px 18px rgba(0,0,0,0.7);
    word-break: break-word;
}

/* SUBTÍTULO */
.hero-sub {
    color: #fff;
    opacity: 0.9;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

/* BASE */
.banner-section {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PARALLAX SUAVE */
.banner-img {
    position: absolute;
    width: 100%;
    height: 115%; /* 🔧 bajamos de 120% */
    object-fit: cover;
    filter: blur(2px) brightness(0.5);
    top: -7%; /* 🔧 más seguro que -10% */
    left: 0;
    transform: translateY(0);
    transition: transform 0.2s ease-out;
}

/* CONTENIDO */
.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* TÍTULO */
.banner-title {
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    text-shadow: 0 6px 18px rgba(0,0,0,0.7);
}

/* ANIMACIONES */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 MOBILE (todo junto) */
@media (max-width: 576px) {
    .banner-section {
        height: 300px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-img {
        height: 110%;
        top: -5%;
    }
}

/* VIDEO THUMBNAIL */
.video-wrapper {
    position: relative;
}

/* Overlay centrado */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 2.5rem;
    color: white;

    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
    transition: all 0.3s ease;
}

/* Hover effect 🔥 */
.video-wrapper:hover .video-overlay {
    background: rgba(211, 0, 224, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}


.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Badge Disponible */
.badge-identity {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;

    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 500;

    color: #fff;
    background: rgba(111, 66, 193, 0.45); /* violeta suave */
    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 20px;
    backdrop-filter: blur(6px);

    letter-spacing: 0.5px;
}
