:root {
    --dark-green: #0f1a14;
    --medium-green: #1d3c34;
    --beige: #e9cda5;
    --light-gray: #f0f0f0;
    --neutral-bg: #e8e8e8;
    --black: #111111;
    --white: #ffffff !important;;;

    --font-extrabold: 'Montserrat', sans-serif;
    --font-thin: 'Montserrat', sans-serif;
    --weight-extrabold: 800;
    --weight-thin: 100;
    --weight-regular: 400;

    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-thin);
    font-weight: var(--weight-thin);
    color: var(--dark-green);
    background-color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-extrabold);
    font-weight: var(--weight-extrabold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-green);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: var(--space-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.1rem;
    font-weight: var(--weight-regular);
}

.luxury-line {
    width: 60px;
    height: 3px;
    background-color: var(--beige);
    margin: 0 auto var(--space-md);
}

.luxury-line-left {
    width: 60px;
    height: 3px;
    background-color: var(--beige);
    margin: var(--space-sm) 0 var(--space-md);
}

.center {
    text-align: center;
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-extrabold);
    font-weight: var(--weight-extrabold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--beige);
    color: var(--dark-green);
}

.btn-primary:hover {
    background-color: #d1b894;
    color: var(--dark-green);
}

.btn-outline {
    background-color: transparent;
    color: var(--beige);
    border: 2px solid var(--beige);
}

.btn-outline:hover {
    background-color: var(--beige);
    color: var(--dark-green);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) 0;
    z-index: 100;
    transition: var(--transition);
    background: rgba(15, 26, 20, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text img {
    height: 80px;
}

.nav {
    display: flex;
    gap: var(--space-md);
}

.nav a {
    color: #ffffff !important;;
    font-weight: var(--weight-regular);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--beige);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 120px;
}

.hero-split-container {
    display: flex;
    height: 100%;
}

.hero-left {
    flex: 1;
    background-color: var(--dark-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 8% 2rem;
    position: relative;
}

.hero-content-left {
    max-width: 520px;
    text-align: left;
}

.hero-main-logo {
    margin-bottom: 0;
    filter: brightness(0) invert(1);
    object-fit: contain;
    object-position: left center;
}

.hero-main-name {
    font-size: 6rem;
    color: white;
    line-height: 0.9;
    margin-bottom: 0.8rem;
    letter-spacing: -2px;
}

.hero-main-role {
    font-size: 2rem;
    font-weight: var(--weight-thin);
    opacity: 0.85;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-main-slogan {
    font-size: 1.8rem;
    font-weight: var(--weight-thin);
    line-height: 1.8;
    margin-bottom: 3rem;
    margin-left: 40px;
    max-width: 450px;
}

.hero-arrow-down {
    font-size: 5rem;
    font-weight: var(--weight-thin);
    opacity: 0.6;
    animation: bounce 2.5s infinite;
    margin-left: 50%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.hero-right {
    flex: 1;
    background-color: var(--neutral-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-photo-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center calc(0% + 18px);
}

@media (max-width: 992px) {
    .hero-split-container {
        flex-direction: column;
    }

    .hero-left {
        padding: 8rem 5% 6rem;
        text-align: center;
        justify-content: flex-start;
    }

    .hero-content-left {
        max-width: 90%;
    }

    .hero-main-name {
        font-size: 4.5rem;
    }

    .hero-main-role {
        font-size: 1.6rem;
        letter-spacing: 6px;
    }

    .hero-main-slogan {
        font-size: 1.2rem;
    }

    .hero-arrow-down {
        font-size: 4rem;
    }

    .hero-right {
        height: 65vh;
    }
}

@media (max-width: 768px) {
    .hero-main-name {
        font-size: 3.8rem;
    }

    .hero-main-role {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .hero-main-slogan {
        font-size: 1.1rem;
    }

    .hero-arrow-down {
        font-size: 3.5rem;
    }
}

.diferenciais {
    background-color: #ffffff !important;;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.diferencial-card {
    padding: var(--space-lg) var(--space-md);
    background-color: var(--light-gray);
    border: 1px solid rgba(29, 60, 52, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--beige);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.diferencial-card:hover::before {
    transform: scaleY(1);
}

.geometric-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--dark-green);
    margin-bottom: var(--space-md);
    position: relative;
}

.geometric-icon::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: var(--beige);
    z-index: -1;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.card-text {
    font-size: 1rem;
    font-weight: var(--weight-regular);
}

.sobre {
    background-color: var(--dark-green);
    color: #ffffff !important;;
}

.sobre .section-title {
    color: #fff;
    text-align: left;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.sobre-content {
    display: block;
}

.sobre-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
}

.sobre-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #333;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.sobre-image-wrapper:hover .sobre-image-placeholder {
    transform: scale(1.02);
}

.architectural-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--beige);
    z-index: 1;
}

.sobre-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    font-weight: var(--weight-thin);
    color: var(--light-gray);
}

.sobre-media {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sobre-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: transparent;
    border-top: 1px solid rgba(233, 205, 165, 0.3);
    padding-top: var(--space-md);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-extrabold);
    color: var(--beige);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #ffffff !important;;
    font-family: var(--font-thin);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.como-funciona {
    background-color: var(--black);
    color: #ffffff !important;;
    padding: var(--space-xl) 0;
}

.como-funciona-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.como-funciona-header .section-title {
    color: #ffffff !important;;
    text-transform: none;
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.como-funciona-header .section-subtitle {
    color: #888;
    font-family: var(--font-thin);
    margin: 0 auto;
    font-size: 1.1rem;
}

.stepper-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.stepper-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    position: relative;
}

.step-target {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    outline: none;
    width: 100px;
}

.step-indicator {
    width: 60px;
    height: 60px;
    background-color: var(--black);
    border: 2px solid rgba(233, 205, 165, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-extrabold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.step-target.active .step-indicator,
.step-target:hover .step-indicator {
    background-color: var(--beige);
    color: var(--black);
    border-color: var(--beige);
    box-shadow: 0 0 20px rgba(233, 205, 165, 0.3);
}

.step-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.step-target.active .step-label,
.step-target:hover .step-label {
    color: var(--beige);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: rgba(233, 205, 165, 0.15);
    margin: 0 -20px;
    margin-top: 29px;
    z-index: 1;
}

.stepper-content-container {
    position: relative;
    min-height: 280px;
}

.stepper-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.stepper-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stepper-panel-inner {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(233, 205, 165, 0.1);
    border-radius: 20px;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.process-icon {
    color: var(--black);
    flex-shrink: 0;
    background: var(--beige);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(233, 205, 165, 0.2);
}

.stepper-text {
    flex-grow: 1;
}

.process-title {
    color: #ffffff !important;;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-extrabold);
}

.process-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-family: var(--font-thin);
    font-weight: var(--weight-regular);
    line-height: 1.6;
}

.depoimentos {
    background-color: #ffffff !important;;
    color: var(--dark-green);
    overflow: hidden;
}

.depoimentos .section-title {
    color: var(--dark-green);
}

.depoimentos .section-subtitle {
    color: rgba(29, 60, 52, 0.7);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: var(--space-md) 10px;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background-color: #ffffff !important;;
    border: 1px solid rgba(233, 205, 165, 0.5);
    border-radius: 12px;
    padding: var(--space-lg) var(--space-md);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    min-height: 320px;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    font-size: 6rem;
    color: rgba(233, 205, 165, 0.3);
    font-family: serif;
    position: absolute;
    top: -20px;
    left: 10px;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--black);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-md);
    font-weight: var(--weight-regular);
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 2px;
    font-family: var(--font-extrabold);
    text-transform: none;
    letter-spacing: 0;
}

.testimonial-author span {
    color: rgba(29, 60, 52, 0.5);
    font-size: 0.85rem;
    font-weight: var(--weight-regular);
    font-family: var(--font-thin);
}

.carousel-btn {
    background-color: var(--dark-green);
    color: var(--beige);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: #122822;
    transform: scale(1.05);
}

.calculadora-home {
    background-color: #ffffff !important;
    position: relative;
    padding: var(--space-xl) 0;
}

.calculadora-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.calculadora-header .section-title {
    color: var(--dark-green);
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 0.6rem;
}

.calculadora-header .section-subtitle {
    color: rgba(0, 0, 0, 0.55);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 0.5rem;
}

.calc-description {
    color: rgba(0, 0, 0, 0.45);
    font-size: 0.95rem;
    max-width: 650px;
    margin: 0 auto;
}

.calc-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--dark-green);
    border: 1px solid rgba(233, 205, 165, 0.18);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px -12px rgba(0,0,0,0.35), 0 8px 25px -8px rgba(0,0,0,0.3);
    color: white;
}

.calc-modes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.calc-mode-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.calc-mode-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(233, 205, 165, 0.3);
    transform: translateY(-2px);
}

.calc-mode-card.active {
    background: rgba(233, 205, 165, 0.12);
    border-color: var(--beige);
}

.mode-icon {
    width: 50px;
    height: 50px;
    background: rgba(233, 205, 165, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--beige);
    position: relative;
}

.mode-symbol {
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
}

.calc-mode-card h4 {
    color: white;
    font-size: 1rem;
    font-family: var(--font-extrabold);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-mode-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0 0 0.5rem;
}

.calc-mode-card small {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    display: block;
    line-height: 1.3;
}

.calc-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    align-items: flex-end;
}

.calc-form-mode {
    display: none;
    width: 100%;
}

.calc-form-mode.active {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    align-items: flex-end;
}

.calc-input-group {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

.calc-prazo,
.calc-sistema {
    flex: 1;
    min-width: 220px;
}

.calc-button-group {
    flex: 0 0 180px;
}

.calc-input-group label {
    color: white;
    font-size: 0.92rem;
    font-family: var(--font-extrabold);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-tooltip {
    color: rgba(255,255,255,0.35);
    cursor: help;
}

.calc-input-group input,
.calc-input-group select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 1.05rem 1.2rem;
    color: white;
    font-size: 1.05rem;
    font-family: var(--font-thin);
    transition: all 0.3s ease;
}

.calc-input-group input:focus,
.calc-input-group select:focus {
    outline: none;
    border-color: var(--beige);
    background: rgba(255,255,255,0.08);
}

.calc-input-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 18px;
    padding-right: 2.8rem;
    appearance: none;
}

.calc-input-group select option {
    background: var(--dark-green);
    color: white;
    padding: 0.5rem;
}

.btn-simular {
    width: 100%;
    background: var(--beige);
    color: var(--dark-green);
    border: none;
    border-radius: 12px;
    padding: 1.05rem;
    font-family: var(--font-extrabold);
    font-size: 0.98rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-simular:hover {
    background: #d1b894;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 205, 165, 0.3);
}

.calc-result {
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(233, 205, 165, 0.14);
    border-radius: 18px;
    padding: 1.8rem 2rem;
    margin-top: 2.2rem;
}

.calc-result-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.8rem;
}

.check-icon {
    width: 42px;
    height: 42px;
    background: rgba(233, 205, 165, 0.14);
    color: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(233, 205, 165, 0.2);
}

.calc-result-header h4 {
    color: white;
    font-size: 1.35rem;
    font-family: var(--font-extrabold);
    margin: 0;
}

.calc-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.metric-box {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.04);
}

.metric-box.highlight-metric {
    background: rgba(233, 205, 165, 0.08);
    border-color: rgba(233, 205, 165, 0.25);
}

.metric-label {
    color: rgba(255,255,255,0.52);
    font-size: 0.82rem;
    font-family: var(--font-thin);
    margin-bottom: 0.35rem;
    display: block;
}

.metric-value {
    color: white;
    font-size: 1.28rem;
    font-family: var(--font-extrabold);
}

.metric-value.gold {
    color: var(--beige);
}

.calc-metrics-footer,
.calc-metrics-footer-no-border {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.calc-metrics-footer-no-border {
    border-top: none;
    padding-top: 0.8rem;
}

.metric-footer {
    flex: 1;
}

.metric-footer.text-right {
    text-align: right;
}

.calc-disclaimer {
    color: rgba(255,255,255,0.38);
    font-size: 0.78rem;
    text-align: center;
    margin: 1.6rem 0 2rem;
    line-height: 1.45;
}

.calc-buttons {
    display: flex;
    gap: 1.2rem;
}

.calc-buttons .btn {
    flex: 1;
    padding: 1.15rem 1.4rem;
    font-size: 0.98rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-extrabold);
}

.btn-primary {
    background: rgba(233, 205, 165, 0.15);
    color: white;
    border: 1px solid rgba(233, 205, 165, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da851;
}

/* ===== PRÉ-APROVAÇÃO FORM ===== */
.pre-aprovacao .section-title {
    color: var(--white);
}

.pre-aprovacao .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.pre-aprovacao {
    background: linear-gradient(135deg, var(--dark-green) 0%, #0a1510 100%);
    padding: 4rem 0;
}

.form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(233, 205, 165, 0.2);
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--beige), #d4b896);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
}

.form-card-header h4 {
    color: var(--beige);
    font-family: var(--font-extrabold), sans-serif;
    font-size: 1.2rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--beige);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.8rem 1rem;
    border: 2px solid rgba(233, 205, 165, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group select option {
    background: var(--dark-green);
    color: white;
    padding: 0.5rem;
}

.form-group select option:hover,
.form-group select option:focus {
    background: var(--beige);
    color: var(--dark-green);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--beige);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(233, 205, 165, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.radio-label:hover,
.checkbox-label:hover {
    color: var(--beige);
}

.radio-custom,
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(233, 205, 165, 0.4);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    display: none;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--beige);
    background: var(--beige);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--dark-green);
    border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--beige);
    background: var(--beige);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-green);
    font-weight: bold;
    font-size: 12px;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.btn-form-submit {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    min-width: 250px;
}

@media (max-width: 768px) {
    .form-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .form-card-header h4 {
        font-size: 1rem;
    }
}

.footer {
    background: linear-gradient(145deg, #181818, #050505);
    border-top: 1px solid rgba(233, 205, 165, 0.3);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 205, 165, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.bc-info h3 {
    color: var(--beige);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.bc-info .bc-creci {
    font-family: var(--font-extrabold);
    font-size: 1rem;
    color: #ffffff !important;;
    margin-bottom: 0.2rem;
}

.bc-info .bc-title {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-family: var(--font-thin);
}

.bc-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bc-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff !important;;
    font-size: 1rem;
    transition: var(--transition);
}

.bc-link:hover {
    color: var(--beige);
}

.bc-link svg {
    color: var(--beige);
}

.bc-cta .btn-whatsapp {
    background-color: #25D366;
    color: #ffffff !important;;
    border: none;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.whatsapp-float {
    font-size: 30px;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 90px;
    width: 60px;
    height: 60px;
    background: var(--dark-green);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(15, 26, 20, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--beige);
    color: var(--dark-green);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .diferenciais-grid,
    .sobre-container {
        grid-template-columns: 1fr;
    }

    .calc-modes {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .calc-form-mode.active {
        flex-direction: column;
        gap: 1.3rem;
    }

    .calc-input-group,
    .calc-button-group {
        min-width: 100%;
        flex: 1;
    }

    .calc-metrics-grid {
        grid-template-columns: 1fr;
    }

    .calc-buttons {
        flex-direction: column;
        gap: 0.9rem;
    }
    
    .stepper-nav {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .step-target {
        width: 80px;
    }
    
    .step-line {
        display: none;
    }
    
    .testimonial-card {
        min-width: calc(50% - 15px);
    }
    
    .carousel-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-btn {
        position: static;
        margin: 0 auto;
    }
}

.hamburger {
    display: none !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
    visibility: hidden;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible;
    }
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--beige);
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .header.scrolled {
        padding: 0.8rem 0;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .logo-text img {
        height: 50px;
    }

    .hamburger {
        /* já definido acima via @media */
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 26, 20, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(233, 205, 165, 0.2);
    }

    .nav.open {
        display: flex;
    }
    
    .nav a {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
        text-align: center;
    }
    
    .btn-outline {
        display: none;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-split-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-left {
        padding: 2rem 5% 3rem;
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content-left {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-main-logo {
        height: 200px;
        width: auto;
        margin: 0 auto 2rem;
        display: block;
    }
    
    .hero-main-slogan {
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0 auto 2rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-arrow-down {
        font-size: 2.5rem;
        margin: 0;
        text-align: center;
    }
    
    .hero-right {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-photo-full {
        object-position: center top;
    }
    
    .sobre .section-title {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .sobre-content {
        text-align: center;
        max-width: 100%;
    }
    
    .luxury-line-left {
        margin: 1rem auto 2rem;
    }
    
    .sobre-text {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .sobre-cta {
        text-align: center;
    }
    
    .sobre-cta p {
        text-align: center;
    }
    
    .sobre-cta div {
        justify-content: center;
    }
    
    .como-funciona-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .como-funciona-header .section-title {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .como-funciona-header .section-subtitle {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .stepper-nav {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .step-target {
        width: 100%;
        max-width: 200px;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .step-indicator {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .step-label {
        font-size: 0.9rem;
        text-align: left;
        flex: 1;
    }
    
    .step-line {
        display: none;
    }
    
    .stepper-content-container {
        min-height: auto;
    }
    
    .stepper-panel-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .process-icon {
        margin: 0 auto;
    }
    
    .process-title {
        text-align: center;
        font-size: 1.6rem;
    }
    
    .process-text {
        text-align: center;
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        width: 95%;
    }
    
    .testimonial-card {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .bc-contact {
        align-items: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .scroll-to-top {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 80px;
        font-size: 22px;
    }
}

/* Responsividade específica para iPhone SE e similares (375px) */
@media (max-width: 375px) {
    body {
        padding-top: 65px;
    }
    
    .header {
        padding: 0.6rem 0;
    }
    
    .header-container {
        padding: 0 0.8rem;
    }
    
    .logo-text img {
        height: 40px;
    }
    
    .btn-outline {
        display: none;
    }
    
    .hero {
        height: 100vh;
        min-height: 667px;
        max-height: 667px;
        overflow: hidden;
    }
    
    .hero-split-container {
        flex-direction: column;
        height: 100%;
        width: 100%;
    }
    
    .hero-left {
        height: 50%;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--dark-green);
    }
    
    .hero-content-left {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .hero-main-logo {
        height: 80px;
        width: auto;
        margin: 0 auto 0.8rem;
        display: block;
        filter: brightness(0) invert(1);
    }
    
    .hero-main-slogan {
        font-size: 0.75rem;
        line-height: 1.2;
        margin: 0 auto 0.5rem;
        max-width: 90%;
        text-align: center;
        color: white;
    }
    
    .hero-arrow-down {
        font-size: 1.2rem;
        margin: 0;
        text-align: center;
        color: white;
    }
    
    .hero-right {
        height: 50%;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-photo-full {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .section {
        padding: 1.2rem 0;
    }
    
    .container {
        width: 95%;
        padding: 0 0.3rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
        padding: 0;
        text-align: center;
    }
    
    .diferencial-card {
        padding: 1rem 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .card-title {
        font-size: 0.9rem;
    }
    
    .card-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .sobre .section-title {
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .sobre-text {
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .sobre-cta p {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-text {
        font-size: 0.7rem;
    }
    
    .como-funciona {
        padding: 1.2rem 0;
    }
    
    .como-funciona-header .section-title {
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .como-funciona-header .section-subtitle {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .stepper-nav {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .step-target {
        width: 100%;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
        margin-bottom: 0.2rem;
    }
    
    .step-indicator {
        width: 25px;
        height: 25px;
        font-size: 0.6rem;
    }
    
    .step-label {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .stepper-panel-inner {
        padding: 0.8rem 0.5rem;
        gap: 0.6rem;
    }
    
    .process-icon {
        padding: 0.6rem;
        width: 35px;
        height: 35px;
    }
    
    .process-title {
        font-size: 1rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .process-text {
        font-size: 0.75rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .testimonial-card {
        padding: 1rem 0.6rem;
        min-height: 220px;
    }
    
    .testimonial-text {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .testimonial-author h4 {
        font-size: 0.85rem;
    }
    
    .btn-ver-depoimento {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .calc-card {
        padding: 0.8rem;
        margin: 0 0.1rem;
    }
    
    .calc-card-header h4 {
        font-size: 0.9rem;
    }
    
    .calc-input-group label {
        font-size: 0.7rem;
    }
    
    .calc-input-group input,
    .calc-input-group select {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .btn-simular {
        padding: 0.6rem;
        font-size: 0.75rem;
    }
    
    .form-card {
        padding: 0.6rem;
        margin: 0 0.1rem;
    }
    
    .form-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }
    
    .form-card-header h4 {
        font-size: 0.8rem;
    }
    
    .form-icon {
        width: 35px;
        height: 35px;
    }
    
    .form-group label {
        font-size: 0.7rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .radio-label,
    .checkbox-label {
        font-size: 0.7rem;
    }
    
    .btn-form-submit {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        min-width: 160px;
    }
    
    .footer {
        padding: 1.2rem 0 0.8rem;
    }
    
    .bc-info h3 {
        font-size: 1.1rem;
    }
    
    .bc-info .bc-creci {
        font-size: 0.75rem;
    }
    
    .bc-info .bc-title {
        font-size: 0.7rem;
    }
    
    .bc-link {
        font-size: 0.75rem;
    }
    
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 6px;
        right: 6px;
    }
    
    .whatsapp-float i {
        font-size: 18px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 6px;
        right: 50px;
        font-size: 14px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .header {
        padding: 0.8rem 0;
    }
    
    .hero-left {
        padding: 1.5rem 5% 2rem;
        min-height: 50vh;
    }
    
    .hero-main-logo {
        height: 150px;
        margin-bottom: 1.5rem;
    }
    
    .hero-main-slogan {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-arrow-down {
        font-size: 2rem;
    }
    
    .hero-right {
        height: 35vh;
        min-height: 250px;
    }
    
    .sobre .section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .sobre-text {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
    }
    
    .sobre-cta p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .como-funciona-header .section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .como-funciona-header .section-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .step-target {
        max-width: 100%;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .step-indicator {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.85rem;
    }
    
    .stepper-panel-inner {
        padding: 1.5rem 1rem;
    }
    
    .process-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .process-text {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .calc-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .calc-modes {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .calc-mode-card {
        padding: 1rem;
    }

    .calc-mode-card h4 {
        font-size: 0.9rem;
    }

    .calc-input-group label {
        font-size: 0.8rem;
    }

    .calc-input-group input,
    .calc-input-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .btn-simular {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .form-card {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .diferencial-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Responsividade para tablets em modo paisagem */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 500px;
    }
    
    .hero-left {
        padding: 6rem 5% 4rem;
    }
    
    .hero-right {
        height: 500px;
    }
}

/* Ajustes para telas ultra-wide */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content-left {
        max-width: 600px;
    }
    
    .calc-card {
        max-width: 900px;
    }
    
    .form-card {
        max-width: 1100px;
    }
}

.btn-ver-depoimento {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--beige);
    color: var(--dark-green);
    border: none;
    border-radius: 8px;
    font-family: var(--font-extrabold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-ver-depoimento:hover {
    background-color: #d1b894;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 205, 165, 0.3);
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 26, 20, 0.95);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background-color: var(--dark-green);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--beige);
    z-index: 10000;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background-color: var(--beige);
    color: var(--dark-green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-modal-close:hover {
    background-color: #d1b894;
    transform: rotate(90deg) scale(1.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .video-modal-close {
        top: -10px;
        right: -10px;
        width: 40px;
        height: 40px;
    }
}

.video-wrapper video {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .video-wrapper video {
        max-height: 250px;
    }
}