/* ==========================================================================
   HOJA DE ESTILOS UNIFICADA - ORNELLA FLENCH
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. IMPORTACIONES & VARIABLES GLOBALES
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap');

:root {
    /* Paleta de colores */
    --navy-blue: #1b2a6b;
    --emerald-green: #0d7a5f;
    --purple-accent: #6f42c1;
    --cyan-accent: #00c2c7;
    --stat-bg: #fffbf2;
    
    /* Gradientes */
    --light-bg-gradient: linear-gradient(135deg, #eef5fc 0%, #ffffff 50%, #fdf0f5 100%);
    --quote-gradient: linear-gradient(180deg, #f0f4ff 0%, #fcf7fd 100%);
    --hero-dark-gradient: linear-gradient(110deg, #0d2259 0%, #1a3c7e 45%, #0d7a5f 100%);
    --profile-circle-gradient: linear-gradient(135deg, #dbeafe 0%, #eddbf7 100%);
}

/* --------------------------------------------------------------------------
   2. REGLAS BASE & TIPOGRAFÍA
   -------------------------------------------------------------------------- */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #3b4252;
    background-color: #ffffff;
}
/* --------------------------------------------------------------------------
   BORDES REDONDEADOS PARA IMÁGENES
   -------------------------------------------------------------------------- */
img,
.photo-placeholder,
.photo-box-dashed,
.profile-photo-placeholder,
.image-placeholder-box,
.contact-img-wrapper {
    border-radius: 20px !important;
}
/* Tipografía Oswald para títulos principales, marca, menú y botones */
h1, h2, h3, h4, h5, h6,
.font-oswald,
.navbar-brand span,
.navbar-nav .nav-link,
.badge-pill,
.badge-pill-outline,
.btn-price,
.btn-navy-pill,
.btn-emerald,
.video-card-title,
.stat-value,
.year-title,
.section-subtitle,
.main-page-title,
.main-heading,
.emerald-heading,
.hero-title,
.quote-title,
.section-heading,
.role-card-title,
.service-card-title,
.btn-footer-contact {
    font-family: 'Oswald', sans-serif;
   
}

/* Utilitarios de Color */
.text-navy { color: var(--navy-blue) !important; }
.text-emerald { color: var(--emerald-green) !important; }
.text-purple { color: var(--purple-accent) !important; }
.text-cyan { color: var(--cyan-accent) !important; }

/* --------------------------------------------------------------------------
   3. NAVEGACIÓN (HEADER & NAVBAR)
   -------------------------------------------------------------------------- */
.navbar-nav .nav-link {
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--emerald-green);
}

/* --------------------------------------------------------------------------
   4. BOTONES Y PÁLDORAS (PILLS)
   -------------------------------------------------------------------------- */
.btn-navy-pill {
    background-color: var(--navy-blue);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.35rem 0.85rem;
    display: inline-block;
}

.btn-emerald {
    background-color: var(--emerald-green);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    border: none;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-emerald:hover {
    background-color: #095945;
    color: #ffffff;
}

.btn-price {
    background-color: var(--emerald-green);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.6rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    display: inline-block;
}

.badge-pill-outline {
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.pill-blue { border: 1px solid var(--navy-blue); color: var(--navy-blue); }
.pill-purple { border: 1px solid var(--purple-accent); color: var(--purple-accent); }
.pill-emerald { border: 1px solid var(--emerald-green); color: var(--emerald-green); }
.pill-cyan { border: 1px solid var(--cyan-accent); color: #00a2a7; }

/* --------------------------------------------------------------------------
   5. SECCIONES GENERALES & ENCABEZADOS
   -------------------------------------------------------------------------- */
.hero-section {
    background: var(--light-bg-gradient);
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.hero-section-dark {
    background: var(--hero-dark-gradient);
    color: #ffffff;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.hero-title {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 3.25rem;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.quote-section {
    background: var(--quote-gradient);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.quote-title {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.15;
}

.section-heading {
    color: var(--emerald-green);
    font-weight: 700;
    font-size: 2.5rem;
}

.main-page-title {
    color: var(--navy-blue);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.2rem;
}

.main-heading, 
.emerald-heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.main-heading { color: var(--navy-blue); }
.emerald-heading { color: var(--emerald-green); }

.subtitle-tag, 
.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-underline {
    width: 40px;
    height: 4px;
    background-color: var(--cyan-accent);
    margin: 0 auto 2.5rem auto;
    border-radius: 2px;
}

.section-divider {
    border-top: 1px solid #e2e8f0;
    margin: 4rem 0 3rem 0;
}

/* --------------------------------------------------------------------------
   6. COMPONENTES Y TARJETAS (CARDS & PLACEHOLDERS)
   -------------------------------------------------------------------------- */
.image-placeholder-box {
    border: 1px dashed #a0aec0;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    min-height: 280px;
}

.photo-box-dashed {
    border: 1px dashed #b0c2de;
    background-color: #f4f7fb;
    aspect-ratio: 1 / 0.8;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #8c9ba5;
}

.photo-placeholder {
    border: 1px dashed #b0c2de;
    background-color: #f8fafc;
    border-radius: 2px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-photo-placeholder {
    border: 1px dashed var(--navy-blue);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 3rem 1.5rem;
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--navy-blue);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tarjetas de Roles (Sobre Mí) */
.role-card {
   
    background-color: #f8fafc;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.role-card-header {
    border: 1px dashed #b0c2de;
    background-color: #f1f5f9;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #64748b;
}

.border-top-cyan { border-top: 3px solid var(--cyan-accent); }
.border-top-purple { border-top: 3px solid var(--purple-accent); }
.border-top-emerald { border-top: 3px solid var(--emerald-green); }

/* Tarjetas de Portfolio & Book */
.book-card {
    border: 1px dashed #b0c2de;
    background-color: #f7fafc;
    border-radius: 4px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #718096;
    min-height: 140px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(27, 42, 107, 0.08);
    border-color: var(--purple-accent);
    color: var(--purple-accent);
}

.book-card i {
    font-size: 2.2rem;
    color: var(--purple-accent);
    margin-bottom: 0.5rem;
    transition: transform 0.2s ease;
}

.book-card:hover i {
    transform: scale(1.1);
}

/* Tarjetas de Servicios con Gradiente */
.gradient-img-box {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bg-gradient-host { background: linear-gradient(135deg, #d3d3f9 0%, #b8d4f4 50%, #43c6ac 100%); color: #2b3a67; }
.bg-gradient-speaker { background: linear-gradient(135deg, #f7dbe8 0%, #d8b4f8 50%, #8e44ad 100%); color: #3d1e6d; }
.bg-gradient-ugc { background: linear-gradient(135deg, #e0f8f3 0%, #a2ebd8 50%, #11998e 100%); color: #0c4d44; }
.bg-gradient-tv { background: linear-gradient(135deg, #d3f3f7 0%, #a1d6e2 50%, #195190 100%); color: #0d2c52; }

/* Tarjetas de Métricas */
.stat-card {
    background-color: var(--stat-bg);
    border-top: 3px solid var(--cyan-accent);
    padding: 1.25rem 1rem;
    height: 100%;
}

.stat-card.top-purple { border-top-color: var(--purple-accent); }
.stat-card.top-emerald { border-top-color: var(--emerald-green); }

.stat-value {
    color: var(--navy-blue);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 0;
}

/* Tarjetas de Videos UGC */
.video-card {
    border-radius: 8px;
    padding: 1rem 0.85rem;
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.col-grad-1 { background: linear-gradient(135deg, #1791b8 0%, #00a896 100%); }
.col-grad-2 { background: linear-gradient(135deg, #ba82c5 0%, #a062b3 100%); }
.col-grad-3 { background: linear-gradient(135deg, #62b197 0%, #87c3ab 100%); }
.col-grad-4 { background: linear-gradient(135deg, #5c83ca 0%, #7d9ee0 100%); }

.video-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.video-card-link {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Cajas informativas píldora */
.info-pill-box {
    background-color: #f8fafc;
    border-left: 3px solid var(--cyan-accent);
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    color: #4a5568;
    height: 100%;
}

.info-pill-box.border-purple { border-left-color: var(--purple-accent); }
.info-pill-box.border-emerald { border-left-color: var(--emerald-green); }

/* --------------------------------------------------------------------------
   7. LÍNEA DE TIEMPO (TIMELINE LISTS)
   -------------------------------------------------------------------------- */
.timeline-list {
    list-style: none;
    padding-left: 1rem;
    border-left: 3px solid #16A6B1;
    margin-bottom: 2rem;
}

.timeline-list li {
    position: relative;
    padding-left: 0.8rem;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.4;
}

.timeline-list li::before {
    content: "•";
    color: #4a5568;
    font-weight: bold;
    position: absolute;
    left: -0.2rem;
}

/* --------------------------------------------------------------------------
   8. FOOTER / BANNERS INFERIORES
   -------------------------------------------------------------------------- */
.footer-banner {
    background-color: var(--emerald-green);
    color: #ffffff;
    padding: 1.25rem 0;
}

.bottom-banner {
    background-color: var(--navy-blue);
    color: #ffffff;
    padding: 1.25rem 0;
}

.footer-banner a,
.bottom-banner a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   9. ADAPTACIÓN RESPONSIVE (MÓVILES & TABLETS - MAX-WIDTH: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Reducción proporcional de títulos principales */
    .hero-title,
    .main-page-title,
    .main-heading,
    .emerald-heading {
        font-size: 2.25rem !important;
        line-height: 1.1;
    }

    /* Reducción de subtítulos y citas */
    .quote-title,
    .section-heading,
    .service-card-title {
        font-size: 1.75rem !important;
    }

    .year-title {
        font-size: 1.5rem !important;
		color: #214A9A;
    }

    .stat-value {
        font-size: 1.8rem !important;
    }

    .video-card-title {
        font-size: 1rem !important;
    }

    /* Ajuste de menú y navbar */
    .navbar-nav .nav-link {
        font-size: 0.85rem !important;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }

    /* Ajuste de botones y badgets en móvil */
    .btn-emerald,
    .btn-price,
    .badge-pill-outline {
        font-size: 0.8rem !important;
        padding: 0.45rem 1rem !important;
    }

    .footer-banner a,
    .bottom-banner a {
        font-size: 1rem !important;
    }

    /* Espaciados y contenedores en móvil */
    .profile-photo-placeholder,
    .image-placeholder-box {
        min-height: 200px;
        padding: 1.5rem 1rem;
    }

    .gradient-img-box {
        height: 160px;
    }
}
/* --------------------------------------------------------------------------
   ESTILOS DE FOOTER Y REDES SOCIALES
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #f8fafc;
}

.footer-socials-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Botones de Redes en el Footer */
.social-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.social-footer-btn i {
    font-size: 1.1rem;
}

/* Hover general */
.social-footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #ffffff;
}

/* Colores de marca al pasar el cursor */
.social-footer-btn.tiktok:hover { background-color: #000000; border-color: #000000; }
.social-footer-btn.facebook:hover { background-color: #1877f2; border-color: #1877f2; }
.social-footer-btn.instagram:hover { background-color: #e4405f; border-color: #e4405f; }
.social-footer-btn.pinterest:hover { background-color: #bd081c; border-color: #bd081c; }
.social-footer-btn.linkedin:hover { background-color: #0a66c2; border-color: #0a66c2; }

/* Adaptación Mobile */
@media (max-width: 768px) {
    .social-footer-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
    }
    .social-footer-btn i {
        font-size: 0.95rem;
    }
}