/* ===================================================================
   DANIEL AGUIAR - Premium Racing Portfolio
   Aesthetic: Dark Luxury Motorsport / Carbon Fiber / Red & White
   =================================================================== */

/* --- CSS Variables --- */
:root {
    --black: #050505;
    --black-light: #0a0a0a;
    --carbon: #111111;
    --carbon-light: #1a1a1a;
    --gray-dark: #222222;
    --gray: #333333;
    --gray-light: #666666;
    --gray-lighter: #999999;
    --white: #ffffff;
    --white-off: #f0f0f0;
    --gold: #ff2d2d;
    --gold-light: #ff5252;
    --gold-dark: #cc0000;
    --gold-glow: rgba(255, 45, 45, 0.35);
    --red-racing: #ff2d2d;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    --nav-height: 80px;
    --container-width: 1400px;
    --section-padding: 120px;

    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    animation: pulse 1.5s ease infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
    animation: loadProgress 1.8s var(--transition-smooth) forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(211, 47, 47, 0.15);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-lighter);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    text-align: center;
}

.mobile-links li {
    margin: 20px 0;
}

.mobile-links a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-links a:hover {
    color: var(--gold);
}

.mobile-cta {
    font-size: 1.2rem !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 10px 30px;
    display: inline-block;
    margin-top: 20px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 5, 5, 0.92) 0%,
        rgba(5, 5, 5, 0.75) 40%,
        rgba(5, 5, 5, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 20px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.9;
    margin-bottom: 20px;
}

.hero-name {
    display: block;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-surname {
    display: block;
    font-size: clamp(5rem, 15vw, 13rem);
    letter-spacing: 12px;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    text-stroke: 2px var(--gold);
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gray-lighter);
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px var(--gold-glow);
}

.hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 5px;
    display: block;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-lighter);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--gold-glow);
}

/* --- Section Headers --- */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 1px;
    background: var(--gold);
}

.section-header.center .section-label {
    padding-left: 0;
}

.section-header.center .section-label::before {
    display: none;
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    line-height: 1.1;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-lighter);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.text-gold {
    color: var(--gold);
}

/* --- About Section --- */
.section-about {
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(20%);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-lighter);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--white);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-dark);
}

.signature-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.9;
}

.signature-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.signature-location {
    font-size: 0.75rem;
    color: var(--gray-lighter);
    letter-spacing: 1px;
}

/* --- Achievements Section --- */
.section-achievements {
    background: var(--carbon);
    position: relative;
    overflow: hidden;
}

.achievements-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(211, 47, 47, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255,255,255,0.01) 50px,
            rgba(255,255,255,0.01) 51px
        );
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), var(--gray-dark));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 8px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--gold);
    background: var(--carbon);
    border-radius: 50%;
}

.timeline-year {
    position: absolute;
    left: -100px;
    top: 5px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray-lighter);
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 4px 12px;
    margin-bottom: 10px;
    border-radius: 2px;
}

.timeline-badge.vice {
    background: var(--gold);
    color: var(--black);
}

.timeline-badge.amg {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.timeline-badge.start {
    background: var(--gray-dark);
    color: var(--gray-lighter);
}

/* --- Categories Section --- */
.section-categories {
    background: var(--black-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.category-card {
    background: var(--carbon);
    border: 1px solid var(--gray-dark);
    overflow: hidden;
    transition: all 0.4s ease;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--carbon) 0%, transparent 60%);
}

.category-content {
    padding: 30px 35px 35px;
}

.category-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 12px;
    margin-bottom: 15px;
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.category-desc {
    color: var(--gray-lighter);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-details {
    border-top: 1px solid var(--gray-dark);
    padding-top: 20px;
}

.category-details li {
    font-size: 0.85rem;
    color: var(--gray-lighter);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.category-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

.category-team {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.category-team-logo {
    height: 40px;
    width: auto;
}

.category-team span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-lighter);
}

.category-instagram {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-instagram:hover {
    background: var(--gold);
    color: var(--white);
}

/* --- Business Section --- */
.section-business {
    background: var(--carbon);
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.business-text {
    color: var(--gray-lighter);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.business-text strong {
    color: var(--white);
}

.business-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.business-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.business-stat-number::after {
    content: '+';
    font-size: 1.5rem;
}

.business-stat-label {
    font-size: 0.75rem;
    color: var(--gray-lighter);
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
    line-height: 1.4;
}

.business-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.role-tag {
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid var(--gray);
    color: var(--gray-lighter);
}

.business-image-wrapper {
    position: relative;
}

.business-image-wrapper img {
    width: 100%;
    max-width: 450px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.business-image-frame {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.business-logo-partner {
    margin-top: 30px;
    text-align: center;
}

.business-logo-partner img {
    height: 50px;
    width: auto;
    margin: 0 auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
}

.business-logo-partner img:hover {
    opacity: 1;
}

/* --- Sponsorship Section --- */
.section-sponsorship {
    position: relative;
    padding: 140px 0;
}

.sponsorship-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sponsorship-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(60%);
    padding: 40px;
}

.sponsorship-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.92) 0%,
        rgba(5, 5, 5, 0.85) 50%,
        rgba(5, 5, 5, 0.95) 100%
    );
}

.section-sponsorship .container {
    position: relative;
    z-index: 2;
}

.sponsorship-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid var(--gray-dark);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--gray-lighter);
    line-height: 1.5;
}

.sponsorship-cta {
    text-align: center;
    padding: 60px;
    border: 1px solid var(--gold);
    background: rgba(211, 47, 47, 0.03);
}

.sponsorship-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.sponsorship-cta p {
    color: var(--gray-lighter);
    margin-bottom: 30px;
    font-size: 1rem;
}

.mediakit-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Sponsor Showcase --- */
.sponsor-showcase {
    margin-bottom: 60px;
    border: 1px solid var(--gold);
    background: rgba(211, 47, 47, 0.03);
    padding: 50px;
}

.sponsor-showcase-header {
    text-align: center;
    margin-bottom: 30px;
}

.sponsor-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.sponsor-highlight {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.sponsor-logo-link {
    flex-shrink: 0;
}

.sponsor-master-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
}

.sponsor-master-logo:hover {
    transform: scale(1.05);
}

/* Sponsor Master */
.sponsor-master {
    margin-bottom: 60px;
    padding: 50px;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.sponsor-master::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sponsor-master-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--white);
    margin-bottom: 30px;
}

.sponsor-master-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sponsor-master-content img {
    height: 100px;
    width: auto;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    flex-shrink: 0;
}

.sponsor-master-info h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: var(--white);
}

.sponsor-master-info p {
    font-size: 0.95rem;
    color: var(--gray-lighter);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 500px;
}

.sponsor-master-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sponsor-master-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.sponsor-master-links a:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Sponsor Prata */
.sponsor-prata {
    margin-bottom: 40px;
}

.sponsor-prata-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: #c0c0c0;
    color: var(--black);
    margin-bottom: 30px;
}

.sponsor-prata-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    border: 1px solid #c0c0c0;
    background: rgba(192, 192, 192, 0.03);
    position: relative;
    transition: all 0.3s ease;
}

.sponsor-prata-content:hover {
    border-color: #e0e0e0;
    background: rgba(192, 192, 192, 0.06);
}

.sponsor-prata-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
}

.sponsor-prata-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sponsor-prata-logo {
    height: 55px;
    width: auto;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    flex-shrink: 0;
}

.sponsor-prata-info h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--white);
}

.sponsor-prata-info p {
    font-size: 0.85rem;
    color: var(--gray-lighter);
    line-height: 1.5;
    margin-bottom: 12px;
}

.sponsor-prata-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sponsor-prata-links a {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c0c0c0;
    border: 1px solid #c0c0c0;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.sponsor-prata-links a:hover {
    border-color: var(--white);
    color: var(--white);
}

/* Sponsor Apoio */
.sponsor-apoio {
    margin-bottom: 60px;
}

.sponsor-apoio-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: #cd7f32;
    color: var(--black);
    margin-bottom: 30px;
}

.sponsor-apoio-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px;
    border: 1px solid var(--gray-dark);
    background: rgba(10, 10, 10, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.sponsor-apoio-content:hover {
    border-color: var(--gray);
}

.sponsor-apoio-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray), transparent);
}

.sponsor-apoio-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sponsor-apoio-logo {
    height: 50px;
    width: auto;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    flex-shrink: 0;
}

.sponsor-apoio-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--white);
}

.sponsor-apoio-info p {
    font-size: 0.8rem;
    color: var(--gray-lighter);
    line-height: 1.5;
    margin-bottom: 12px;
}

.sponsor-apoio-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sponsor-apoio-links a {
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-lighter);
    border: 1px solid var(--gray);
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.sponsor-apoio-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.sponsor-info {
    max-width: 500px;
}

.sponsor-info p {
    color: var(--gray-lighter);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sponsor-info strong {
    color: var(--white);
}

.sponsor-cta-open {
    text-align: center;
    padding: 50px;
    margin-bottom: 60px;
    border: 2px dashed var(--gray);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.sponsor-cta-open:hover {
    border-color: var(--gold);
}

.sponsor-open-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--black);
    margin-bottom: 20px;
    animation: pulseBadge 2s ease infinite;
}

@keyframes pulseBadge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.sponsor-cta-open h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: var(--white);
}

.sponsor-cta-open p {
    color: var(--gray-lighter);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Contact CTA --- */
.contact-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: var(--carbon-light);
    border: 1px solid var(--gray-dark);
}

.contact-cta h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.contact-cta p {
    color: var(--gray-lighter);
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}

/* --- Gallery Section --- */
.section-gallery {
    background: var(--black-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* --- Team Section --- */
.section-team {
    background: var(--carbon);
    padding: 100px 0;
}

.team-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border: 1px solid var(--gray-dark);
    background: var(--carbon-light);
    text-align: center;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold);
}

.team-card p {
    color: var(--gray-lighter);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* --- Goals Section --- */
.section-goals {
    background: var(--black-light);
    padding: 100px 0;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.goal-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--gray-dark);
    transition: all 0.3s ease;
}

.goal-item:hover {
    border-color: var(--gold);
}

.goal-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.6;
}

.goal-item h3 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-lighter);
    line-height: 1.5;
}

/* --- Footer --- */
.footer {
    background: var(--carbon);
    border-top: 1px solid var(--gray-dark);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-lighter);
}

.footer-links-col h4,
.footer-social-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    font-size: 0.9rem;
    color: var(--gray-lighter);
    transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-lighter);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-lighter);
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-partner span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-lighter);
}

.partner-logo {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* --- Reveal Animations --- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s var(--transition-smooth);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .section {
        padding: 100px 0;
    }
}

@media (max-width: 992px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper img {
        aspect-ratio: 16/9;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .business-image {
        order: -1;
    }

    .sponsorship-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item-large {
        grid-column: span 2;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline-year {
        position: static;
        margin-bottom: 5px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .timeline-item::before {
        left: -21px;
    }

    .timeline::before {
        left: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-scroll {
        display: none;
    }

    .sponsorship-benefits {
        grid-template-columns: 1fr;
    }

    .sponsorship-cta {
        padding: 40px 20px;
    }

    .sponsor-showcase {
        padding: 30px 20px;
    }

    .sponsor-master {
        padding: 30px 20px;
    }

    .sponsor-master-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .sponsor-master-links {
        justify-content: center;
    }

    .sponsor-prata-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .sponsor-prata-links {
        justify-content: center;
    }

    .sponsor-apoio-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .sponsor-apoio-links {
        justify-content: center;
    }

    .sponsor-highlight {
        flex-direction: column;
        text-align: center;
    }

    .sponsor-cta-open {
        padding: 30px 20px;
    }

    .sponsorship-bg-img {
        object-fit: cover;
        object-position: center top;
        padding: 0;
    }

    .contact-cta {
        padding: 30px 20px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-buttons .btn {
        justify-content: center;
    }

    .mediakit-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .mediakit-buttons .btn {
        justify-content: center;
    }

    .business-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-surname {
        -webkit-text-stroke: 1px var(--gold);
        text-stroke: 1px var(--gold);
    }

    .sponsor-showcase {
        padding: 20px 15px;
    }

    .sponsor-master-logo {
        height: 50px;
    }

    .sponsor-title {
        font-size: 1.4rem;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    .business-roles {
        flex-direction: column;
    }

    .category-content {
        padding: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.75rem;
    }
}
