/* ============================================
   SKULL COQUETELARIA - PREMIUM LANDING PAGE
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark: #121212;
    --color-darker: #1a1a1a;
    --color-gray-dark: #2a2a2a;
    --color-gray: #4a4a4a;
    --color-gray-light: #8a8a8a;
    --color-white: #ffffff;
    --color-off-white: #f5f5f5;

    /* Gold Palette */
    --color-gold: #c9a962;
    --color-gold-light: #d4bc7a;
    --color-gold-dark: #a88b45;
    --color-champagne: #f7e7ce;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.text-gold {
    color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn--gold {
    background: var(--gradient-gold);
    color: var(--color-black);
    border: none;
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gold);
}

.btn--outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn--lg {
    padding: 1.125rem 2.5rem;
    font-size: 0.9375rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

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

.header__logo img {
    height: auto;
    width: 200px;

}

.header__nav {
    display: none;
}

.header__menu {
    display: flex;
    gap: var(--space-lg);
}

.header__menu a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
}

.header__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.header__menu a:hover::after {
    width: 100%;
}

.header__cta {
    display: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 992px) {
    .header__nav {
        display: block;
    }

    .header__cta {
        display: inline-flex;
    }

    .header__toggle {
        display: none;
    }
}

/* Mobile Menu */
.header__nav.mobile-open {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark);
    padding: var(--space-xl);
}

.header__nav.mobile-open .header__menu {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.header__nav.mobile-open .header__menu a {
    font-size: 1.25rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.8) 100%);
}

.hero__content {
    position: relative;
    text-align: center;
    padding: calc(var(--space-3xl) + 60px) 0 var(--space-3xl);
    max-width: 900px;
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 2px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero__title-line {
    display: block;
    color: var(--color-white);
}

.hero__title-accent {
    display: block;
    color: var(--color-gold);
    font-style: italic;
    font-weight: 600;
}

.hero__subtitle {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    font-weight: 300;
    color: var(--color-off-white);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-off-white);
}

.hero__feature-icon {
    color: var(--color-gold);
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    animation: bounce 2s infinite;
}

.hero__scroll-text {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-icon {
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    position: relative;
}

.hero__scroll-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scroll-indicator 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll-indicator {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(5px);
    }
}

/* ============================================
   EXPERIENCE SECTION (Rodrygo Góes)
   ============================================ */
.experience {
    padding: var(--space-3xl) 0;
    background: var(--color-dark);
}

.experience__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.experience__content {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.experience__media {
    position: relative;
}

.experience__video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience__video-link {
    display: block;
    position: relative;
}

.experience__video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.experience__video-link:hover .experience__video-thumb {
    transform: scale(1.05);
}

.experience__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.experience__video-link:hover .experience__play {
    transform: translate(-50%, -50%) scale(1.1);
}

.experience__info {
    text-align: center;
}

.experience__badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
    border: 3px solid var(--color-gold);
}

.experience__badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience__highlight {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.experience__name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.experience__text {
    font-size: 0.9375rem;
    color: var(--color-off-white);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
}

@media (min-width: 992px) {
    .experience__content {
        grid-template-columns: 1.2fr 1fr;
    }

    .experience__info {
        text-align: left;
    }

    .experience__badge {
        margin: 0 0 var(--space-md);
    }

    .experience__text {
        margin: 0 0 var(--space-lg);
    }
}

/* ============================================
   SERVICES SECTION (Eventos)
   ============================================ */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-black);
}

.services__grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.services__media {
    position: relative;
}

.services__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.services__media-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.services__content {
    max-width: 600px;
}

.services__text {
    font-size: 0.9375rem;
    color: var(--color-off-white);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.services__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.services__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.services__feature-icon {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   STRUCTURES SECTION
   ============================================ */
.structures {
    padding: var(--space-3xl) 0;
    background: var(--color-dark);
}

.structures__grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.structures__content {
    max-width: 600px;
}

.structures__text {
    font-size: 0.9375rem;
    color: var(--color-off-white);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.structures__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.structures__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.structures__feature-icon {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.structures__media {
    position: relative;
}

.structures__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.structures__media-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

@media (min-width: 992px) {
    .structures__grid {
        grid-template-columns: 1fr 1fr;
    }

    .structures__content {
        order: 1;
    }

    .structures__media {
        order: 2;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    padding: var(--space-3xl) 0;
    background: var(--color-black);
}

.team__grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.team__media {
    position: relative;
}

.team__img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.team__content {
    max-width: 600px;
}

.team__text {
    font-size: 0.9375rem;
    color: var(--color-off-white);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

@media (min-width: 992px) {
    .team__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos {
    padding: var(--space-3xl) 0;
    background: var(--color-dark);
    overflow: hidden;
}

.videos__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.videos__carousel {
    position: relative;
    margin-bottom: var(--space-xl);
}

.videos__track {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-sm);
}

.videos__track::-webkit-scrollbar {
    display: none;
}

.videos__item {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.videos__link {
    display: block;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.videos__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.videos__link:hover .videos__thumb {
    transform: scale(1.05);
}

.videos__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.videos__play::after {
    content: '';
    border-left: 12px solid var(--color-black);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: 3px;
}

.videos__link:hover .videos__play {
    transform: translate(-50%, -50%) scale(1.1);
}

.videos__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-sm);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    font-size: 0.875rem;
    font-weight: 500;
}

.videos__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-base);
}

.videos__nav:hover {
    background: var(--color-gold-light);
    transform: translateY(-50%) scale(1.1);
}

.videos__nav--prev {
    left: -22px;
}

.videos__nav--next {
    right: -22px;
}

.videos__cta {
    text-align: center;
}

@media (min-width: 768px) {
    .videos__item {
        flex: 0 0 calc(50% - var(--space-sm));
    }
}

@media (min-width: 992px) {
    .videos__item {
        flex: 0 0 calc(33.333% - var(--space-md));
    }

    .videos__nav {
        display: flex;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-black);
}

.gallery__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery__subtitle {
    font-size: 0.9375rem;
    color: var(--color-off-white);
    max-width: 600px;
    margin: 0 auto;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition-base);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

.gallery__cta {
    text-align: center;
}

.gallery__note {
    font-size: 0.75rem;
    color: var(--color-off-white);
    margin-top: var(--space-sm);
}

@media (min-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
}

@media (min-width: 992px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--color-dark);
}

.testimonials__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.testimonials__subtitle {
    font-size: 0.9375rem;
    color: var(--color-off-white);
}

.testimonials__video {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials__video-link {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.testimonials__video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.testimonials__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.testimonials__video-link:hover .testimonials__play {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
    padding: var(--space-xl) 0;
    background: var(--color-black);
    border-top: 1px solid var(--color-gray-dark);
    border-bottom: 1px solid var(--color-gray-dark);
}

.partners__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--color-off-white);
}

.partners__carousel {
    overflow: hidden;
}

.partners__track {
    display: flex;
    gap: var(--space-2xl);
    animation: scroll-partners 20s linear infinite;
}

.partners__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.partners__item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-base);
}

.partners__item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    padding: var(--space-3xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.about__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.about__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 10, 10, 0.95) 0%,
            rgba(10, 10, 10, 0.8) 50%,
            rgba(10, 10, 10, 0.4) 100%);
}

.about__content {
    max-width: 550px;
}

.about__text {
    font-size: 0.9375rem;
    color: var(--color-off-white);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about__text:last-of-type {
    margin-bottom: var(--space-lg);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-dark);
}

.contact__grid {
    display: grid;
    gap: var(--space-2xl);
}

.contact__info {
    max-width: 500px;
}

.contact__text {
    font-size: 0.9375rem;
    color: var(--color-off-white);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact__detail-icon {
    width: 40px;
    height: 40px;
    background: var(--color-gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact__detail-icon svg {
    width: 18px;
    height: 18px;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-off-white);
    margin-bottom: 2px;
}

.contact__detail a {
    font-weight: 500;
    color: var(--color-white);
}

.contact__detail a:hover {
    color: var(--color-gold);
}

.contact__form-wrapper {
    background: var(--color-darker);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-gray-dark);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-off-white);
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-white);
    background: var(--color-gray-dark);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-dark);
}

.form-group input::placeholder {
    color: var(--color-gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8a8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-error {
    font-size: 0.75rem;
    color: #e74c3c;
    display: none;
}

.form-group.error input,
.form-group.error select {
    border-color: #e74c3c;
}

.form-group.error .form-error {
    display: block;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-align: center;
}

#submitBtn {
    position: relative;
}

#submitBtn .btn__loading {
    display: none;
}

#submitBtn.loading .btn__text {
    visibility: hidden;
}

#submitBtn.loading .btn__loading {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact__success {
    display: none;
    text-align: center;
    padding: var(--space-xl);
}

.contact__success.show {
    display: block;
}

.contact__form-wrapper.success .contact__form {
    display: none;
}

.contact__success-icon {
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.contact__success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.contact__success p {
    color: var(--color-off-white);
    margin-bottom: var(--space-lg);
}

@media (min-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact__form-wrapper {
        padding: var(--space-xl);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--color-black);
    border-top: 1px solid var(--color-gray-dark);
}

.footer__grid {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer__brand img {
    height: 80px;
    width: auto;
    margin-bottom: var(--space-sm);
}

.footer__brand p {
    font-size: 0.875rem;
    color: var(--color-off-white);
    max-width: 300px;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--color-gold);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--color-off-white);
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__contact p {
    font-size: 0.875rem;
    color: var(--color-off-white);
    margin-bottom: 0.5rem;
}

.footer__contact a:hover {
    color: var(--color-gold);
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-dark);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--color-gray);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ============================================
   STICKY CTA MOBILE
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 999;
    background: var(--color-dark);
    border-top: 1px solid var(--color-gray-dark);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sticky-cta__btn--whatsapp {
    background: #25D366;
    color: var(--color-white);
}

.sticky-cta__btn--form {
    background: var(--color-gold);
    color: var(--color-black);
}

@media (min-width: 992px) {
    .sticky-cta {
        display: none;
    }
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.modal__content {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal__content video {
    width: 100%;
    display: block;
}

.modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
    font-size: 2rem;
    color: var(--color-white);
    z-index: 10;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--color-gold);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox__prev {
    left: var(--space-md);
}

.lightbox__next {
    right: var(--space-md);
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray);
}

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Focus */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ==========================================================================
   REVIEWS CAROUSEL - Google Reviews
   ========================================================================== */

.reviews-carousel {
    margin-top: var(--space-2xl);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-carousel__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.reviews-carousel__google {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-off-white);
}

.reviews-carousel__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-carousel__stars,
.review-card__stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    background: var(--color-gray);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.filled {
    background: #fbbf24;
}

.reviews-carousel__score {
    font-weight: 700;
    color: var(--color-white);
    font-size: 1rem;
}

.reviews-carousel__count {
    font-size: 0.8125rem;
    color: var(--color-gray-light);
}

.reviews-carousel__wrapper {
    position: relative;
    overflow: hidden;
}

.reviews-carousel__track {
    display: flex;
    gap: var(--space-md);
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 calc(100% - var(--space-md));
    background: var(--color-darker);
    border: 1px solid var(--color-gray-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    min-height: 200px;
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__info {
    display: flex;
    flex-direction: column;
}

.review-card__name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.9375rem;
}

.review-card__date {
    font-size: 0.75rem;
    color: var(--color-gray-light);
}

.review-card__stars {
    margin-bottom: 0.75rem;
}

.review-card__stars .star {
    width: 14px;
    height: 14px;
}

.review-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-off-white);
    margin: 0;
}

.reviews-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 10;
}

.reviews-carousel__nav:hover {
    background: var(--color-gold-light);
    transform: translateY(-50%) scale(1.1);
}

.reviews-carousel__nav--prev {
    left: -20px;
}

.reviews-carousel__nav--next {
    right: -20px;
}

.reviews-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
}

.reviews-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-dark);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.reviews-carousel__dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .reviews-carousel__header {
        flex-direction: row;
        justify-content: space-between;
    }

    .review-card {
        flex: 0 0 calc(50% - var(--space-sm));
    }

    .reviews-carousel__nav {
        display: flex;
    }
}

@media (min-width: 992px) {
    .review-card {
        flex: 0 0 calc(33.333% - var(--space-md) * 2 / 3);
    }
}