.header {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}

.logo h1 {
    font-size: 1.6rem;
    font-family: 'Pacifico', cursive;
    color: var(--secondary-color);
}

.colorido span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.colorido .b,
.colorido .a2 { color: #003366; }
.colorido .a1,
.colorido .n { color: #00cc66; }
.colorido .c,
.colorido .a3 { color: #ff6600; }

.nav {
    display: flex;
}

.nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav a {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a:focus-visible::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

.hero {
    background: linear-gradient(140deg, #fffaf5 0%, #ffe5d4 50%, #ffd6c4 100%);
    padding: 160px 0 120px;
    margin-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    align-items: center;
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: inline-block;
}

.hero-content h2 {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #4f4f4f;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.12);
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(255, 102, 0, 0.08);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.metric-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(0, 51, 102, 0.06);
    pointer-events: none;
}

.metric-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffe0cc, #ffc299);
    display: grid;
    place-items: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.metric-content span {
    font-size: 0.78rem;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: #7a7a7a;
}

.metric-content strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--secondary-color);
    margin-top: 6px;
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-video-card {
    background: #fff;
    border-radius: 32px;
    padding: 18px;
    box-shadow: 0 25px 45px rgba(18, 8, 4, 0.25);
}

.hero-video {
    width: 100%;
    border-radius: 26px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.hero-video-card figcaption {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #8f8f8f;
    text-align: center;
}

.hero-media-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-media-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.hero-media-card p {
    color: var(--text-color);
    margin-bottom: 18px;
}

.panel-signature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-signature img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: var(--shadow-sm);
}

.panel-signature span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}
