/* 
 * Marco Jesus - Premium Tattoo Artist CSS
 * Specialty: Black & Grey Realism
 */

:root {
    --vermilion: #FC4C13;
    --cod-gray: #111111;
    --gray: #808080;
    --white: #FFFFFF;
    --black: #000000;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Mixes and Accents */
    --vermilion-soft: rgba(252, 76, 19, 0.1);
    --vermilion-neon: rgba(252, 76, 19, 0.6);
    --gray-dark: #333333;

    /* Patterns */
    /* Patterns */
    --mesh-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ffffff' fill-opacity='0.15' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.31zM28 15l-12.98-7.5V0h2v6.35L28 12.69v2.3zm0 18.5L15.02 41v8h2v-6.85L28 35.81v-2.31z'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ensure content stays above the mesh */
.container,
.hero-content,
.scroll-indicator {
    position: relative;
    z-index: 10;
}

h1,
h2,
h3 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Base Section Styles */
section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background-color: #000;
    /* Default black */
}

/* Gray Background Sections */
#about,
#process {
    background-color: var(--cod-gray) !important;
}

/* Diagonal Transitions (Negative Margin for overlap) */
#about,
#stats,
#portfolio,
#process,
.testimonials-section,
#studio {
    margin-top: -5vh;
}

/* Specific Clip-Paths for transitions */
#about {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    margin-top: 0;
    /* First section after hero stays at top */
    z-index: 2;
}

#stats {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    background-color: #000 !important;
    z-index: 3;
}

#portfolio {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    background-color: #000 !important;
    margin-top: 0;
    padding-top: 150px;
    z-index: 4;
}

#process {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    z-index: 5;
}

.testimonials-section {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 120px 0;
    z-index: 6;
}

#studio {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    background-color: #000 !important;
    z-index: 7;
}

/* Portfolio Accent Clip-path correction */
.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 76, 19, 0.05) 0%, transparent 100%);
    z-index: -1;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    /* Slightly more padding for better breathability */
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Subtle gradient to ensure visibility against bright backgrounds */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.header.scrolled {
    background: #000;
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    color: var(--white);
    text-decoration: none;
    z-index: 1001;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Shadow on logo */
}

.logo-text {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.logo-thin {
    font-weight: 200;
}

.logo-bold {
    font-weight: 900;
}

.logo-tagline {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--white);
    /* Brighter to contrast against shadow */
    margin-top: 4px;
    opacity: 0.8;
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--white);
    /* Brighter for better visibility */
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Shadow on menu */
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--vermilion);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hamburger Open State */
.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--cod-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .nav-menu a {
        font-size: 1.3rem;
        padding: 10px 20px;
        display: block;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
        z-index: 999;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--vermilion);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--vermilion);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(252, 76, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(252, 76, 19, 0.5);
    background-color: #ff5e2b;
    color: var(--white);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1rem;
}

/* Hero Section Modernized */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Alinhar à esquerda */
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Inspired sharp overlay - removed diagonal 110deg */
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Full Screen Background for Hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.hero-content {
    z-index: 10;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
    padding-left: 10%;
    /* Ainda mais para a esquerda */
}

.hero-text-wrapper {
    max-width: 1000px;
    text-align: left;
    margin-top: 0;
    /* Centralizado verticalmente melhor agora sem o título grande */
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-subtitle {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Mantemos o "Black & Grey" grande e impactante */
    color: var(--white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    font-weight: 200;
    display: block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hero-subtitle strong {
    display: block;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    /* Significativamente mais pequeno */
    font-weight: 500;
    color: var(--vermilion);
    letter-spacing: 0.6em;
    margin-top: 1.5rem;
    /* Efeito LED / Neon */
    text-shadow:
        0 0 5px var(--vermilion),
        0 0 10px var(--vermilion),
        0 0 20px var(--vermilion),
        0 0 40px var(--vermilion-neon);
    animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
    from {
        opacity: 0.8;
        text-shadow: 0 0 5px var(--vermilion), 0 0 10px var(--vermilion);
    }

    to {
        opacity: 1;
        text-shadow: 0 0 10px var(--vermilion), 0 0 20px var(--vermilion), 0 0 40px var(--vermilion-neon);
    }
}

.hero-title {
    font-size: clamp(3.0rem, 12vw, 8.5rem);
    line-height: 1;
    margin-bottom: 5rem;
    /* Aumentado de 3rem */
    color: var(--white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .hero-title {
        margin-bottom: 3rem;
    }

    .hero-subtitle {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-title span.thin {
    font-weight: 200;
    opacity: 0.95;
}

.hero-title span.bold {
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Premium Button */
.btn-premium {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem 4rem;
    transition: all 0.5s ease;
}

.btn-premium:hover {
    background: var(--vermilion);
    border-color: var(--vermilion);
    color: var(--white);
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 2px;
    height: 6px;
    background: var(--white);
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

.btn:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Elegant WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    /* Botão arredondado */
    color: var(--white);
    padding: 1.2rem 2.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp svg {
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

.btn-whatsapp:hover svg {
    color: #25D366;
    /* Discreet WhatsApp Green on hover */
    transform: scale(1.1);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.8s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 150px;
    /* Mais espaço para não haver sobreposição visual indesejada */
    position: relative;
    z-index: 20;
    /* Garantir que fica acima da máquina */
}

/* Hidden Items */
.portfolio-item-hidden,
.event-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item-hidden.show {
    display: block;
    animation: fadeInUp 0.8s forwards;
}

.portfolio-actions {
    margin-top: 4rem;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* Works Page Specific */
.works-container {
    padding-top: 15vh;
}

.works-category {
    margin-bottom: 8rem;
}

.category-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-title {
    font-size: 1.8rem;
    position: relative;
    padding-left: 1rem;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--vermilion);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-track>* {
    flex: 0 0 calc(33.333% - 1rem);
    /* 3 items in a row */
}

@media (max-width: 992px) {
    .carousel-track>* {
        flex: 0 0 calc(50% - 0.75rem);
        /* 2 items on tablets */
    }
}

@media (max-width: 600px) {
    .carousel-track>* {
        flex: 0 0 100%;
        /* 1 item on mobile */
    }
}

.carousel-controls {
    display: flex;
    gap: 1rem;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--white);
    color: var(--black);
    transform: scale(1.1);
}

.carousel-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}


/* Machine Reveal Interactive Section */
.machine-reveal-container {
    position: relative;
    height: 60vh;
    /* Reduzido para ser mais contido */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 230px;
    /* Puxar para mais perto do grid mas por baixo */
    z-index: 1;
    /* Valor baixo para ficar atrás do grid */
}

.machine-reveal-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    text-align: center;
    color: var(--white);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.machine-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    z-index: 2;
    /* Acima do fundo, abaixo do título e do grid */
    pointer-events: none;
}

.machine-reveal-img {
    width: 100%;
    height: auto;
    opacity: 0;
    /* Default invisible */
    transform: scale(0.7) translateY(50px);
    transition: none;
    /* Controlled via JS for smooth scroll mapping */
    filter: drop-shadow(0 0 30px var(--vermilion-soft));
}

.portfolio-item {
    aspect-ratio: 4/5;
    background-color: #111;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: var(--transition);
}

.portfolio-item:nth-child(odd) {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.portfolio-item:nth-child(even) {
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(100%);
}

.portfolio-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* About Section */
.about {
    background-color: #000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text .highlight {
        border-left: none;
        border-top: 2px solid var(--vermilion);
        border-bottom: 2px solid var(--vermilion);
        padding-left: 0;
        margin: 2rem 0;
        background: var(--vermilion-soft);
    }
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.about-text .highlight {
    color: var(--white);
    font-size: 1.15rem;
    border-left: 3px solid var(--vermilion);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    background: linear-gradient(90deg, var(--vermilion-soft) 0%, transparent 100%);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: #000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    color: var(--vermilion);
    background: var(--vermilion-soft);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    transition: var(--transition);
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 1px solid var(--vermilion-neon);
    border-radius: 22px;
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: translateY(-5px);
    background: var(--vermilion);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(252, 76, 19, 0.2);
}

.stat-item:hover .stat-icon::after {
    opacity: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--vermilion);
    font-weight: 700;
    margin-left: 2px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--gray);
    margin-top: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background-color: var(--cod-gray);
    text-align: center;
}

/* Animations */
/* Reveal classes used by main.js */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Neon Borders for Contact Card - Inspired by Reference */
.contact-card {
    background: var(--mesh-pattern), linear-gradient(rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.9));
    background-size: 12px 21px, auto;
    /* Favos mais pequenos */
    padding: 4rem;
    border: 3px solid #f87b32;
    /* O 'nucleo' branco do tubo neon */
    border-radius: 30px;
    /* Cantos arredondados como na imagem */
    backdrop-filter: blur(20px);
    max-width: 800px;
    margin: 0 auto;
    position: relative;

    /* Sistema de Brilho Neon Multi-Camada mais Fino */
    box-shadow:
        0 0 3px #fff,
        /* Core glow */
        0 0 6px var(--vermilion),
        /* Immediate orange glow */
        0 0 12px var(--vermilion),
        /* Secondary glow */
        0 0 20px rgba(252, 76, 19, 0.4),
        /* Broad atmospheric glow */
        inset 0 0 8px var(--vermilion),
        /* Inner tube glow */
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    /* Depth shadow */

    animation: neonPulses 3s infinite alternate;
}

@keyframes neonPulses {
    from {
        box-shadow:
            0 0 3px #fff,
            0 0 6px var(--vermilion),
            0 0 12px var(--vermilion),
            0 0 20px rgba(252, 76, 19, 0.4),
            inset 0 0 8px var(--vermilion);
    }

    to {
        box-shadow:
            0 0 5px #fff,
            0 0 10px var(--vermilion),
            0 0 20px var(--vermilion),
            0 0 35px rgba(252, 76, 19, 0.5),
            inset 0 0 12px var(--vermilion);
    }
}

/* Remove the old moving gradient border */
.contact-card::before {
    display: none;
}

@keyframes neonMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 400% 400%;
    }
}

/* Lazy Loading placeholder */
.lazy-load {
    background: linear-gradient(90deg, #1d1d1d 25%, #252525 50%, #1d1d1d 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Footer Banner Section */
.footer-banner-section {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    background-color: #000;
    position: relative;
}

.footer-banner-section::before,
.footer-banner-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 35%;
    /* Altura generosa para um fade muito suave */
    z-index: 2;
    pointer-events: none;
}

.footer-banner-section::before {
    top: 0;
    height: 50%;
    /* Altura extrema para um fade quase total até ao centro */
    background: linear-gradient(to bottom, #000 0%, #000 20%, transparent 100%);
}

.footer-banner-section::after {
    bottom: 0;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.footer-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Footer */
footer {
    padding: 10px 0 30px;
    /* Reduzido no topo, mantido no fundo */
    margin-top: -80px;
    /* Puxa o footer para cima do banner para uma ligação mais apertada */
    position: relative;
    z-index: 10;
    border-top: none;
    /* Removida a linha para uma fusão mais limpa */
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    margin: 0 1.5rem;
    font-size: 1.5rem;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--vermilion);
    border-color: var(--vermilion);
    background: var(--vermilion-soft);
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--cod-gray);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin-top: -5vh;
    padding: 120px 0;
}

.testimonials-slider {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 2rem;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .testimonial-content {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.quote-icon {
    color: var(--vermilion);
    opacity: 0.2;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--vermilion);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Slider Nav */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-arrow:hover {
    background: var(--white);
    color: var(--black);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--vermilion);
    width: 25px;
    border-radius: 10px;
}

.developer-credit {
    margin-top: 40px;
    font-size: 0.65rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.1em;
}

.developer-credit span {
    opacity: 0.6;
}

.developer-credit a {
    color: var(--white);
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--vermilion);
}

/* Events Section Refined */
.events-section {
    padding: 120px 0;
    z-index: 5.5;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    background-color: var(--black);
    position: relative;
    margin-top: -5vh;
}

.events-group {
    margin-bottom: 120px;
}

.events-group-title {
    font-size: 0.9rem;
    color: var(--vermilion);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 3rem;
    display: block;
    border-bottom: 1px solid rgba(252, 76, 19, 0.2);
    padding-bottom: 15px;
}

/* Featured (Upcoming) - 1 Column */
.events-featured-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-card.featured {
    display: flex;
    flex-direction: row;
    /* Horizontal on desktop */
    padding: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    max-width: 1100px;
    margin: 0 auto;
}


.event-card.featured .event-details {
    flex: 1.2;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

/* Slider on the right */
.event-slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-top-right-radius: 29px;
    border-bottom-right-radius: 29px;
}


.event-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-slide {
    flex: 0 0 100%;
    height: 100%;
}

.event-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Nav */
.event-slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--black);
}

.slider-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: block;
}

.slider-arrow.prev::before {
    transform: rotate(-135deg);
}

.slider-arrow.next::before {
    transform: rotate(45deg);
}

/* Past Events - 2 Columns restricted as requested */
.events-section .container {
    max-width: 1400px;
    /* Wider container for 2-column landscape cards */
}

.events-past-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 50px;
}



/* Featured Card Style when in 2-column Grid - Horizontal */
.events-past-grid .event-card.featured {
    flex-direction: row;
    height: auto;
    min-height: 320px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.events-past-grid .event-card.featured:hover,
.events-past-grid .event-card.featured:active {
    filter: grayscale(0%);
    opacity: 1;
}


.events-past-grid .event-card.featured .event-details {
    padding: 2rem;
    flex: 1.3;
}

.events-past-grid .event-card.featured .event-slider-container {
    height: auto;
    flex: 1;
    border-radius: 0 29px 29px 0;
    order: 2;
}

.events-past-grid .event-card.featured .event-slider-nav {
    bottom: 1.5rem;
    right: 1.5rem;
}



.event-card.compact {
    display: none;
    /* Replaced by unified featured style */
}


/* Date adjustments */
.event-date {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--vermilion);
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--white);
    margin-top: 5px;
}

.event-date .year {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 2px;
}

.event-card.featured .event-date .day {
    font-size: 2.5rem;
}

/* Info adjustments */
.event-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.event-location,
.event-venue {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.event-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin-top: 1rem;
    max-width: 90%;
    opacity: 0.8;
}


.event-location svg {
    color: var(--vermilion);
}

.event-status .badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.event-status .badge:hover {
    filter: brightness(1.2);
}


.event-status .badge.highlight {
    background: var(--vermilion);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 0 20px var(--vermilion-soft);
}

@media (max-width: 992px) {
    .event-card.featured {
        flex-direction: column;
        height: auto !important;
        /* Ensure card expands */
    }

    .event-card.featured .event-details {
        padding: 2rem;
        order: 2;
        flex: none;
    }

    .event-slider-container {
        width: 100%;
        height: 350px;
        order: 1;
        border-radius: 29px 29px 0 0;
        position: relative;
        overflow: hidden;
        flex: none;
    }

    .event-slider {
        position: relative;
        /* Back to relative on mobile */
        width: 100%;
        height: 100%;
    }
}



@media (max-width: 768px) {
    .events-past-grid {
        grid-template-columns: 1fr;
    }

    .event-card.compact {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Slightly lighter */
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 380px;
    /* Slimmer for better popup feel */
    z-index: 10;
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncier animation */
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.video-container {
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 30px;
    /* Rounder edges */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--vermilion);
    border-color: var(--vermilion);
    color: var(--white);
    transform: rotate(90deg);
}

.video-trigger {
    cursor: pointer !important;
}

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 70vw;
        /* Even smaller for a clear popup feel */
        max-height: 70vh;
    }

    .video-container {
        border-radius: 20px;
    }
}

.event-card.featured.event-hidden {
    display: none;
}

/* View More Button Container */
.events-view-more {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.view-more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.view-more-btn:hover {
    background: var(--vermilion);
    border-color: var(--vermilion);
    box-shadow: 0 10px 30px var(--vermilion-soft);
    transform: translateY(-3px);
}

.view-more-btn svg {
    transition: transform 0.3s ease;
}

.view-more-btn.active svg {
    transform: rotate(180deg);
}

/* Stories Section */
.stories-section {
    padding: 120px 0;
    background-color: var(--black);
    position: relative;
    z-index: 5.5;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    margin-top: -5vh;
}


/* Stories Slider */
.stories-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.stories-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.story-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 15px;
    /* Slight padding for the slide containers */
}

.story-featured-card {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.stories-nav {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.stories-dots {
    display: flex;
    gap: 12px;
}

.stories-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.stories-dot.active {
    background: var(--vermilion);
    width: 30px;
    border-radius: 10px;
}


.story-content {
    flex: 1.2;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.story-tag {
    color: var(--vermilion);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.story-title {
    font-size: 3rem;
    margin: 0;
    line-height: 1.1;
}

.story-narrative {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-narrative p {
    margin-bottom: 1.5rem;
}

.story-narrative p:last-child {
    margin-bottom: 0;
}

.story-actions {
    margin-top: 1rem;
}

.story-visual {
    flex: 1;
    position: relative;
    background: #000;
}

.story-video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}


.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: var(--transition);
}

.story-video-preview:hover .story-img {
    opacity: 0.7;
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--vermilion);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 0 40px rgba(252, 76, 19, 0.5);
    transition: var(--transition);
}

.play-button svg {
    margin-left: 5px;
}

.story-video-preview:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 0 60px rgba(252, 76, 19, 0.7);
}

@media (max-width: 992px) {
    .story-featured-card {
        flex-direction: column;
        margin-top: 30px;
        border-radius: 25px;
    }

    .story-content {
        padding: 3rem 1.5rem;
        order: 2;
        gap: 1.5rem;
        text-align: center;
    }

    .story-visual {
        min-height: 300px;
        order: 1;
    }

    .story-title {
        font-size: 2.2rem;
    }

    .story-narrative {
        font-size: 1rem;
    }
}

/* Page Headers (Generic) */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px !important;
    /* Force override generic section padding */
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-family: var(--font-primary);
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--white), #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Works Page specific overrides - matching Bookings structure */
.works-page main>.container {
    padding-top: 100px;
}

.container-narrow {
    max-width: 800px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 4rem;
    backdrop-filter: blur(10px);
}

.form-group-wrapper {
    margin-bottom: 4rem;
}

.form-section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    border-left: 3px solid var(--vermilion);
    padding-left: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.label-hint {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: -5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--vermilion);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

/* Checkbox Styling */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
    user-select: none;
    transition: var(--transition);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: var(--transition);
}

.checkbox-container:hover input~.checkmark {
    background-color: rgba(255, 255, 255, 0.1);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--vermilion);
    border-color: var(--vermilion);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Radio Styling */
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.radio-container {
    cursor: pointer;
}

.radio-container input {
    position: absolute;
    opacity: 0;
}

.radio-box {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
}

.radio-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.radio-price {
    font-size: 1.1rem;
    color: var(--vermilion);
    font-weight: 700;
}

.radio-container input:checked+.radio-box {
    border-color: var(--vermilion);
    background: rgba(252, 76, 19, 0.05);
}

.note-info {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 20px;
    line-height: 1.5;
}

/* File Upload styling */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--gray);
}

.file-upload-design svg {
    color: var(--vermilion);
}

.file-hint {
    font-size: 0.8rem;
    margin: 0;
}

.file-upload-wrapper:hover {
    border-color: var(--vermilion);
    background: rgba(255, 255, 255, 0.02);
}

.file-list-preview {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.file-item {
    font-size: 0.8rem;
    color: var(--white);
    background: rgba(252, 76, 19, 0.05);
    /* Match theme accent */
    border: 1px solid rgba(252, 76, 19, 0.1);
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    animation: fadeIn 0.3s ease;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.file-info span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-remove {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.file-remove:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--vermilion);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-submit {
    margin-top: 2rem;
}

.btn-large {
    width: 100%;
    padding: 22px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.privacy-note {
    margin-top: 2rem;
    color: var(--gray);
    font-size: 0.65rem;
    line-height: 1.6;
    opacity: 0.5;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .hero-subtitle strong {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
        margin-top: 0.5rem;
    }

    .booking-form {
        padding: 2rem;
    }

    .form-row,
    .radio-group {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-title {
        font-size: 3rem;
    }
}

/* Fix for Stats Layout */
.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    /* Match commonly used size */
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    width: 100%;
}

.stat-number,
.stat-suffix {
    display: inline-block;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.stat-suffix {
    color: var(--white);
    margin-right: 4px;
    /* Space between + and number */
}

/* Booking Status Overlay */
.booking-status-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.booking-status-overlay.active {
    display: flex;
}

.booking-status-content {
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 0.5s forwards;
}

.booking-status-message {
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.booking-status-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(252, 76, 19, 0.1);
    border-top: 3px solid var(--vermilion);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Booking Terms & Conditions Styles */
.booking-terms {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.terms-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.terms-intro p {
    margin-bottom: 15px;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.terms-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.terms-item:hover {
    border-color: var(--vermilion);
}

.terms-item h3 {
    font-size: 1.5rem;
    color: var(--vermilion);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.terms-item p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.terms-sub-block {
    margin: 25px 0;
    padding-left: 15px;
    border-left: 2px solid var(--vermilion);
}

.terms-sub-block strong {
    display: block;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.terms-note {
    font-style: italic;
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-top: 20px !important;
}

.sessions-list {
    margin: 25px 0;
}

.session-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.session-row span {
    color: var(--gray-light);
}

.session-row strong {
    color: var(--white);
}

.schedule-block {
    margin-top: 30px;
    padding: 20px;
    background: rgba(252, 76, 19, 0.05);
    border-radius: 4px;
}

.schedule-block h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
    text-transform: uppercase;
}

.terms-footer {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-footer h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .booking-terms {
        padding: 60px 0;
    }

    .terms-header h2 {
        font-size: 1.8rem;
    }

    .terms-item {
        padding: 25px;
    }
}

/* Attention Note in Booking Form */
.attention-note {
    background: rgba(252, 76, 19, 0.05);
    /* Very subtle orange tint */
    border: 1px solid rgba(252, 76, 19, 0.2);
    padding: 12px 20px;
    margin-bottom: 50px;
    border-radius: 4px;
    text-align: center;
}

.attention-note p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.attention-note strong {
    color: var(--vermilion);
    letter-spacing: 0.1em;
}

.termos-link {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.termos-link:hover {
    color: var(--vermilion);
}

/* Anti-Spam Styles */
.hp-field {
    position: absolute;
    left: -5000px;
    top: -5000px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}