* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: transparent;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

/* Scroll mais suave para toda a página */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Host Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: transparent;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

main {
    margin: 0;
    padding: 0;
    width: 100%;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
    background: transparent;
    width: 100%;
    height: auto;
    box-shadow: none;
}

.navbar {
    width: calc(100% - 40px);
    max-width: 1403px;
    margin: 20px auto;
    height: 112px;
    position: relative;
    background: white;
    border-radius: 33px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 60px;
    position: relative;
    width: 100%;
}

.logo-section {
    position: relative;
    width: 180px;
    height: 112px;
    margin-left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.logo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: auto;
    height: 100px;
    max-width: 180px;
    position: relative;
    z-index: 10;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: 1;
    justify-content: center;
}

/* Desktop - hide mobile button */
.nav-menu .mobile-cta-button {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: #166534;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 16px;
    transition: opacity 0.3s;
    opacity: 0.6;
}

.nav-link:visited,
.nav-link:active {
    color: #166534;
    text-decoration: none;
}

.nav-link.active {
    opacity: 1;
    color: #166534;
}

.nav-link:hover {
    opacity: 1;
    color: #166534;
}

.nav-cta {
    margin-right: 0;
    flex-shrink: 0;
}

.cta-button-nav {
    width: 320px;
    height: 64px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.cta-button-nav::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 9px;
    width: calc(100% - 24px);
    height: 44px;
    background: #166534;
    border-radius: 12px;
    border: 0.6px solid rgba(22, 101, 52, 0.9);
    z-index: 1;
}

.cta-button-nav::after {
    content: 'Agendar agora';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1;
    z-index: 2;
    text-align: center;
    white-space: nowrap;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate(-50%, -50%) translateZ(0);
    -webkit-transform: translate(-50%, -50%) translateZ(0);
}

.cta-button-nav:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button-nav:hover::before {
    background: #14502d;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #166534;
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-width: 100%;
    min-height: 100%;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(43, 74, 58, 0.95) 0%, rgba(43, 74, 58, 0.7) 30%, rgba(43, 74, 58, 0.3) 60%, rgba(43, 74, 58, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-pills {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    pointer-events: auto;
}

.hero-pill {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-pill:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
}

.hero-pill.active {
    background: #bef264;
    border-color: #bef264;
    width: 24px;
    border-radius: 4px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 200px 20px 80px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100vh;
    padding-left: 60px;
}

.hero-text-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
    max-width: 900px;
    width: 100%;
}

.hero-location {
    width: 288px;
    height: 20px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    outline: 0.32px solid rgba(255, 255, 255, 0.3);
    outline-offset: -0.32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-location div {
    text-align: center;
    justify-content: flex-start;
    color: white;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 12px;
}

.hero-title {
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-top: 2rem;
}

.hero-title-lime,
.hero-title-white {
    white-space: nowrap;
}

.hero-title-lime {
    color: #bef264;
    font-size: 4.5rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 69.75px;
    text-align: left;
}

.hero-title-white {
    color: white;
    font-size: 4.5rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 69.75px;
    text-align: left;
}

.hero-description {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-top: 2rem;
}

.hero-desc-medium,
.hero-desc-light {
    color: white;
    font-size: 1.25rem;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 24px;
    text-align: left;
}

.hero-desc-medium {
    font-weight: 700;
}

.hero-desc-medium,
.hero-desc-light {
    color: white;
    font-size: 1.25rem;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 24px;
    text-align: left;
}

.hero-desc-light {
    font-weight: 300;
}

.hero-form {
    width: 100%;
    max-width: 690px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}


.hero-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-form-label {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    text-align: left;
}

.hero-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    font-family: 'Host Grotesk', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.hero-form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-form-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.hero-form-button {
    width: 100%;
    max-width: 593px;
    height: 64px;
    padding: 4px;
    background: linear-gradient(to bottom right, white, #f7fee7);
    border: none;
    border-radius: 20.03px;
    outline: 1.18px solid rgba(255, 255, 255, 0.6);
    outline-offset: -1.18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.hero-form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-form-button svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.hero-form-button svg path {
    fill: #404040;
}

.hero-button-text {
    justify-content: flex-start;
    color: #404040;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 20px;
}

.hero-form-button-mobile .hero-button-text {
    color: #404040;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 12px;
    justify-content: flex-start;
}

.hero-form-button-mobile {
    width: 384px;
    max-width: 100%;
    height: 48px;
    padding: 2.37px;
    background: linear-gradient(to bottom right, white, #f7fee7);
    border: none;
    border-radius: 12px;
    outline: 0.78px solid rgba(255, 255, 255, 0.6);
    outline-offset: -0.78px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 2rem;
    text-decoration: none;
}

.hero-form-button-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.hero-form-button-mobile svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.hero-form-button-mobile svg path {
    fill: #404040;
}

.hero-subtitle {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.hero-text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s 0.2s both;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s 0.4s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.proposito {
    background: #325142;
    background-image: radial-gradient(circle at bottom right, rgba(203, 255, 131, 0.15) 0%, rgba(203, 255, 131, 0) 40%);
    padding: 80px 0;
}

.proposito-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding-left: 60px;
}

.proposito-text-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    max-width: 600px;
    width: 100%;
}

.proposito-location {
    width: auto;
    min-width: fit-content;
    height: 20px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    outline: 0.32px solid rgba(255, 255, 255, 0.3);
    outline-offset: -0.32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.proposito-location div {
    text-align: center;
    justify-content: flex-start;
    color: white;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 12px;
}

.proposito-title {
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 0;
    gap: 0;
    padding: 0;
}

.proposito-title-lime,
.proposito-title-white {
    white-space: nowrap;
}

.proposito-title-lime {
    color: #bef264;
    font-size: 4.5rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 69.75px;
    text-align: left;
    margin: 0;
    padding: 0;
}

.proposito-title-white {
    color: white;
    font-size: 4.5rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 69.75px;
    text-align: left;
    margin: 0;
    padding: 0;
}

.proposito-description {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: left;
    margin-top: 1rem;
    line-height: 1.6;
}

.proposito-desc-medium,
.proposito-desc-light {
    color: white;
    font-size: 1.25rem;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.6;
    text-align: left;
    margin: 0;
    padding: 0;
}

.proposito-description br {
    display: block;
    content: "";
    margin: 0.25rem 0;
    line-height: 1;
}

.proposito-desc-medium {
    font-weight: 700;
}

.proposito-desc-light {
    font-weight: 300;
}

.proposito-carousel-wrapper {
    flex: 0 0 auto;
    width: 500px;
    max-width: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proposito-carousel {
    width: 100%;
    height: 700px;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #bef264;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.proposito-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.proposito-slide.active {
    opacity: 1;
    z-index: 2;
}

.proposito-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.proposito-carousel-controls {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    z-index: 10;
}

.proposito-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.proposito-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Prova Social Section */
.prova-social {
    background: #ffffff;
    padding: 80px 0 100px;
    overflow: hidden;
}

.prova-social-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.prova-social-header {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 0;
}

.prova-social-location {
    width: auto;
    min-width: fit-content;
    height: 20px;
    padding: 6px 12px;
    background: rgba(50, 81, 66, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    outline: 0.32px solid rgba(50, 81, 66, 0.3);
    outline-offset: -0.32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prova-social-location div {
    text-align: center;
    justify-content: center;
    color: #325142;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 12px;
}

.prova-social-title {
    width: auto;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.prova-social-title-green {
    color: #14532d;
    font-size: 4rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 62px;
    text-align: center;
}

.prova-social-title-green-light {
    color: #166534;
    font-size: 4rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 62px;
    text-align: center;
}

.prova-social-description {
    width: 100%;
    max-width: 899px;
    text-align: center;
    color: #71717a;
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0;
}

.prova-social-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    overflow: hidden;
}

.prova-social-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 560px;
    margin: 0 auto;
    overflow: hidden;
    perspective: 1000px;
}

.prova-social-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.prova-social-video-card {
    /* Estilos aplicados via JS */
}

.prova-social-video-card.active {
    box-shadow: 0 20px 60px rgba(190, 242, 100, 0.4);
}

.video-clickable-area {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.video-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
    z-index: 1;
    pointer-events: none;
    display: block;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #000000;
    display: block;
    /* Alterado de none para block */
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 21px;
    z-index: 1000;
    background: #000000;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 21px;
    z-index: 1;
    transition: background 0.3s ease;
}

.prova-social-video-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 10;
    transition: transform 0.3s ease;
}

.prova-social-video-card:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: transform 0.3s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button svg {
    width: 100%;
    height: 100%;
}

.prova-social-video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 21px;
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.prova-social-video-card:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 21px;
    z-index: 1000;
    background: #000000;
    pointer-events: auto;
    isolation: isolate;
}

.prova-social-video-card iframe {
    pointer-events: auto !important;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 200;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #166534;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-nav.prev-btn {
    left: 20px;
}

.carousel-nav.next-btn {
    right: 20px;
}

.prova-social-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.prova-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(50, 81, 66, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(50, 81, 66, 0.2);
    color: #325142;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prova-social-btn:hover {
    background: rgba(50, 81, 66, 0.2);
    transform: scale(1.1);
}

.prova-social-pills {
    display: flex;
    gap: 12px;
    align-items: center;
}

.prova-social-pill {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(50, 81, 66, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.prova-social-pill.active {
    background: #bef264;
    width: 24px;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about {
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
}

/* Contact Form */
.contact {
    background: var(--bg-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2.5rem;
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #ccc;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-modal {
    left: 20px;
}

.next-modal {
    right: 20px;
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

/* Testimonials */
.testimonials {
    background: var(--bg-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s;
}

.testimonial-card.active {
    display: block;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.author-info h4 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
}

/* Footer */
/* ==================== FOOTER ==================== */
.footer {
    background: #ffffff;
    padding: 60px 0 80px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Logo e Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 120px;
    height: 120px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Host Grotesk', sans-serif;
    color: #166534;
    margin-top: 10px;
}

.footer-description {
    font-size: 1.125rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    color: #71717a;
    line-height: 1.4;
    max-width: 380px;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.footer-address span {
    font-size: 1.125rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    color: #71717a;
}

.footer-address strong {
    font-weight: 400;
}

/* Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
}

.footer-link {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    color: #166534;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Team */
.footer-team {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 40px;
}

.footer-team-title {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    color: #166534;
    margin-bottom: 8px;
}

.footer-team-item {
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    color: #71717a;
    line-height: 1.4;
    max-width: 280px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.footer-social-link {
    width: 56px;
    height: 56px;
    border: 1px solid #166534;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(22, 101, 52, 0.1);
    transform: translateY(-3px);
}

/* Footer Responsivo */
@media (max-width: 1024px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 60px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .footer-brand {
        grid-column: span 1;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        width: 140px;
        height: 140px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-address {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-links {
        align-items: center;
        padding-top: 0;
    }

    .footer-team {
        align-items: center;
        text-align: center;
        padding-top: 0;
    }

    .footer-team-item {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
        margin-top: 30px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar {
        max-width: 100%;
        border-radius: 0;
        height: auto;
        min-height: 80px;
    }

    .navbar-container {
        padding: 0 20px;
        flex-wrap: wrap;
        position: relative;
    }

    .logo-section {
        margin-left: 0;
        width: 140px;
        height: 80px;
    }

    .logo-img {
        height: 70px;
        max-width: 140px;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .cta-button-nav {
        width: 200px;
        height: 50px;
    }

    .cta-button-nav::before {
        width: 180px;
        height: 36px;
        left: 10px;
        top: 7px;
    }

    .cta-button-nav::after {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0;
    }

    .navbar {
        width: calc(100% - 20px);
        margin: 10px auto;
        height: auto;
        min-height: 70px;
        border-radius: 20px;
        max-width: 100%;
    }

    .navbar-container {
        padding: 15px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
    }

    .logo-section {
        width: 160px;
        height: 70px;
        margin-top: 0;
        flex-shrink: 0;
    }

    .logo-img {
        height: 70px;
        max-width: 160px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        right: auto;
        flex-direction: column;
        background: white;
        backdrop-filter: blur(20px);
        width: calc(100vw - 20px);
        max-width: calc(100% - 20px);
        margin: 0;
        padding: 2rem 1.5rem;
        gap: 0;
        text-align: center;
        transition: left 0.3s ease;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 999;
        list-style: none;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        box-sizing: border-box;
    }

    .nav-menu li {
        width: 100%;
        box-sizing: border-box;
        list-style: none;
    }

    .nav-menu.active {
        left: 10px;
        right: auto;
        width: calc(100vw - 20px);
        transform: none;
        padding-bottom: 2rem;
    }

    .nav-menu .nav-link {
        color: #166534;
        font-size: 18px;
        padding: 0.75rem 1rem;
        display: block;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        text-decoration: none;
        opacity: 0.6;
    }

    .nav-menu .nav-link:visited,
    .nav-menu .nav-link:active {
        color: #166534;
        text-decoration: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #166534;
        text-decoration: none;
        opacity: 1;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
        z-index: 1001;
        position: relative;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-menu .mobile-cta-button {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu.active .mobile-cta-button {
        display: block;
        margin-top: 1.5rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu.active .mobile-cta-button .cta-button-nav {
        width: calc(100% - 3rem);
        height: 56px;
        margin: 0 auto;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.05);
        border: 0.5px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active .mobile-cta-button .cta-button-nav::before {
        width: calc(100% - 24px);
        height: 44px;
        left: 12px;
        top: 6px;
        border-radius: 12px;
        border: 0.6px solid rgba(22, 101, 52, 0.9);
    }

    .nav-menu.active .mobile-cta-button .cta-button-nav::after {
        font-size: 18px;
        font-weight: 400;
    }

    .nav-menu.active .mobile-cta-button .cta-button-nav:hover {
        background: rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active .mobile-cta-button .cta-button-nav:hover::before {
        background: #14502d;
    }

    .nav-menu.active .mobile-cta-button .cta-button-nav:active {
        transform: scale(0.98);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        min-height: 80vh;
        width: 100%;
    }

    .hero-background {
        width: 100%;
        height: 100%;
    }

    .hero-slide picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-bg-image,
    .hero-slide picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .hero-content {
        padding: 120px 20px 40px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
        padding-left: 20px;
    }

    .hero-text-left {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-title {
        align-items: center;
        text-align: center;
    }

    .hero-title-lime,
    .hero-title-white {
        text-align: center;
    }

    .hero-description {
        align-items: center;
        text-align: center;
    }

    .hero-desc-medium,
    .hero-desc-light {
        text-align: center;
    }

    .hero-location {
        width: 100%;
        max-width: 288px;
        margin: 0 auto;
    }

    .hero-location div {
        text-align: center;
    }

    .hero-title {
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .hero-title-lime,
    .hero-title-white {
        font-size: 2.5rem;
        line-height: 48px;
    }

    .hero-description {
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .hero-desc-medium,
    .hero-desc-light {
        font-size: 1rem;
        line-height: 22px;
        orphans: 2;
        widows: 2;
        word-break: keep-all;
        hyphens: none;
    }

    .hero-description {
        orphans: 2;
        widows: 2;
        line-height: 1.5;
    }

    .hero-form {
        display: none;
    }

    .hero-form-button-mobile {
        display: flex;
        width: calc(100% - 40px);
        max-width: 384px;
        height: 48px;
        margin: 2rem auto 0;
        padding: 2.37px;
        box-sizing: border-box;
    }

    .hero-form-button-mobile .hero-button-text {
        font-size: 0.875rem;
        line-height: 12px;
        white-space: normal;
        text-align: center;
        font-weight: 400;
    }

    .hero-form-button-mobile svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.8rem;
        margin-top: 1.5rem;
        text-align: left;
    }

    .proposito {
        padding: 60px 0;
    }

    .proposito-content-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        padding-left: 20px;
    }

    .proposito-carousel-wrapper {
        max-width: 100%;
        width: 100%;
        order: -1;
    }

    .proposito-carousel {
        height: 500px;
        max-width: 100%;
    }

    .proposito-text-left {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .proposito-location {
        width: auto;
        margin: 0 auto;
    }

    .proposito-location div {
        text-align: center;
    }

    .proposito-title {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .proposito-title-lime,
    .proposito-title-white {
        font-size: 2.5rem;
        line-height: 48px;
        white-space: normal;
        text-align: center;
    }

    .proposito-description {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .proposito-desc-medium,
    .proposito-desc-light {
        font-size: 1rem;
        line-height: 22px;
        text-align: center;
        orphans: 2;
        widows: 2;
        word-break: keep-all;
        hyphens: none;
    }

    .proposito-description br {
        display: none;
    }

    .prova-social {
        padding: 60px 0;
    }

    .prova-social-wrapper {
        padding: 40px 20px;
        gap: 40px;
    }

    .prova-social-header {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .prova-social-location {
        margin: 0 auto;
    }

    .prova-social-location div {
        text-align: center;
    }

    .prova-social-title {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .prova-social-title-green,
    .prova-social-title-green-light {
        font-size: 2.5rem;
        line-height: 48px;
        text-align: center;
    }

    .prova-social-description {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.5rem;
        margin-top: 1.5rem;
        padding: 0 20px;
    }

    .prova-social-video-carousel {
        height: 500px;
        max-width: 100%;
    }

    .prova-social-video-item {
        width: 270px;
        height: 480px;
    }

    .prova-social-play-icon {
        width: 50px;
        height: 50px;
    }

    .hero-text-center {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .content-grid,
    .services-grid,
    .gallery-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonial-controls {
        flex-wrap: wrap;
    }

    .modal-nav {
        font-size: 2rem;
        padding: 15px;
    }

    .prev-modal {
        left: 10px;
    }

    .next-modal {
        right: 10px;
    }
}

/* Depoimentos Section */
.depoimentos {
    background: #ffffff;
    padding: 20px 0 80px;
}

.depoimentos-wrapper {
    max-width: 1186px;
    margin: 0 auto;
    padding: 0 20px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    min-height: 747px;
}

.depoimento-card {
    width: 288px;
    height: 384px;
    background: #fafaf9;
    border-radius: 34.43px;
    border: 1px solid #d4d4d8;
    padding: 19px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.depoimento-card-featured {
    background: linear-gradient(to bottom right, #14532d, #bef264);
    border: 1px solid #d4d4d8;
}

.depoimento-bg-image {
    position: absolute;
    top: -71px;
    left: -0.35px;
    width: 288px;
    height: 503px;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.3;
    z-index: 0;
}

.depoimento-badge {
    position: absolute;
    top: 18.67px;
    right: 20px;
    width: 48px;
    height: 28px;
    padding: 6px;
    background: linear-gradient(to bottom right, #14532d, #bef264);
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.depoimento-badge svg {
    width: 10px;
    height: 10px;
}

.depoimento-badge span {
    color: white;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 9.90px;
}

.depoimento-badge-white {
    background: white;
}

.depoimento-badge-white span {
    color: #166534;
}

.depoimento-divider {
    width: 176px;
    height: 1px;
    border-top: 0.58px solid #166534;
    margin: 12px 0 50px 0;
    z-index: 1;
}

.depoimento-divider-white {
    border-top-color: white;
}

.depoimento-text {
    color: #166534;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    z-index: 1;
}

.depoimento-text-white {
    color: white;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    z-index: 1;
}

.depoimento-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-author h4 {
    color: #166534;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.4;
    margin: 0 0 4px 0;
}

.depoimento-card-featured .depoimento-author h4 {
    color: white;
}

.depoimento-author span {
    color: #a8a29e;
    font-size: 12px;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.2;
}

.depoimento-card-featured .depoimento-author span {
    color: #166534;
}

/* Posicionamento específico dos cards */
.depoimentos-grid>.depoimento-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.depoimentos-grid>.depoimento-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.depoimentos-grid>.depoimento-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.depoimentos-grid>.depoimento-card:nth-child(4) {
    grid-column: 4;
    grid-row: 1;
}

.depoimentos-grid>.depoimento-card:nth-child(5) {
    grid-column: 1;
    grid-row: 2;
}

.depoimentos-grid>.depoimento-card:nth-child(6) {
    grid-column: 2;
    grid-row: 2;
}

.depoimentos-grid>.depoimento-card:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
}

.depoimentos-grid>.depoimento-card:nth-child(8) {
    grid-column: 4;
    grid-row: 2;
}

@media (max-width: 1200px) {
    .depoimentos-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    .depoimentos-grid>.depoimento-card:nth-child(4),
    .depoimentos-grid>.depoimento-card:nth-child(8) {
        display: none;
    }
}

@media (max-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 20px;
    }

    .depoimento-card {
        width: 100%;
        max-width: 288px;
        margin: 0 auto;
        height: auto;
        min-height: 350px;
    }

    .depoimentos-grid>.depoimento-card {
        grid-column: 1 !important;
    }

    /* Mostrar apenas cards: Geovana (1), Mariana (3), Guilherme (8) */
    .depoimentos-grid>.depoimento-card:nth-child(2),
    .depoimentos-grid>.depoimento-card:nth-child(4),
    .depoimentos-grid>.depoimento-card:nth-child(5),
    .depoimentos-grid>.depoimento-card:nth-child(6),
    .depoimentos-grid>.depoimento-card:nth-child(7) {
        display: none;
    }

    .depoimentos-grid>.depoimento-card:nth-child(1) {
        grid-row: 1;
        display: flex;
    }

    .depoimentos-grid>.depoimento-card:nth-child(3) {
        grid-row: 2;
        display: flex;
    }

    .depoimentos-grid>.depoimento-card:nth-child(8) {
        grid-row: 3;
        display: flex;
    }
}

/* Animações de Entrada Elegantes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Classes de animação */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

/* Aplicar animações aos textos - animações rápidas sem delay */
.hero-location,
.proposito-location,
.prova-social-location,
.sobre-location {
    animation: fadeInDown 0.4s ease-out forwards;
}

.hero-title,
.proposito-title,
.prova-social-title,
.sobre-title {
    animation: fadeInUp 0.5s ease-out forwards;
}

.hero-description,
.proposito-description,
.prova-social-description,
.sobre-description {
    animation: fadeInUp 0.5s ease-out forwards;
}

.hero-text-left,
.proposito-text-left {
    animation: slideInLeft 0.5s ease-out forwards;
}

.depoimento-card {
    animation: fadeInUp 0.4s ease-out forwards;
}

.depoimento-card:nth-child(1) {
    animation-delay: 0s;
}

.depoimento-card:nth-child(2) {
    animation-delay: 0.05s;
}

.depoimento-card:nth-child(3) {
    animation-delay: 0.1s;
}

.depoimento-card:nth-child(4) {
    animation-delay: 0.15s;
}

.depoimento-card:nth-child(5) {
    animation-delay: 0.2s;
}

.depoimento-card:nth-child(6) {
    animation-delay: 0.25s;
}

.depoimento-card:nth-child(7) {
    animation-delay: 0.3s;
}

.depoimento-card:nth-child(8) {
    animation-delay: 0.35s;
}

/* Animações com Intersection Observer */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sobre Section */
.sobre {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sobre-img-top {
    position: absolute;
    top: 450px;
    left: 0;
    width: auto;
    height: auto;
    max-width: 400px;
    z-index: 0;
    pointer-events: none;
}

.sobre-img-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    max-width: 400px;
    z-index: 0;
    pointer-events: none;
}


.sobre-wrapper {
    position: relative;
    z-index: 1;
}

.sobre-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.sobre-header {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 0;
}

.sobre-location {
    width: auto;
    min-width: fit-content;
    height: 20px;
    padding: 6px 12px;
    background: rgba(50, 81, 66, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    outline: 0.32px solid rgba(50, 81, 66, 0.3);
    outline-offset: -0.32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sobre-location div {
    text-align: center;
    justify-content: center;
    color: #325142;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 12px;
}

.sobre-title {
    width: auto;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sobre-title-green {
    color: #166534;
    font-size: 4rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 62px;
    text-align: center;
}

.sobre-title-green-light {
    color: #166534;
    font-size: 4rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 62px;
    text-align: center;
}

.sobre-description {
    width: 100%;
    max-width: 899px;
    text-align: center;
    color: #71717a;
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0;
}

.sobre-content {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.sobre-text-block {
    width: 100%;
    text-align: center;
    line-height: 1.5;
}

.sobre-text-block-first {
    max-width: 957.53px;
    height: auto;
    min-height: 40px;
}

.sobre-text-block-second {
    max-width: 885.10px;
    height: auto;
    min-height: 40px;
}

.sobre-text-light {
    color: #71717a;
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.6;
}

.sobre-text-medium {
    color: #71717a;
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.6;
}

.sobre-text-green {
    color: #166534;
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.6;
}

/* Galeria de Imagens Sobre */
.sobre-gallery {
    width: 100%;
    max-width: 1357px;
    margin: 60px auto 0;
    padding: 84px 85px;
    background: #fafaf9;
    border-radius: 55px;
    border: 1px solid #d4d4d8;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.sobre-gallery-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.sobre-gallery-row-top {
    height: 350px;
    align-items: flex-start;
}

.sobre-gallery-row-bottom {
    height: 320px;
    align-items: flex-end;
}

.sobre-gallery-item {
    border-radius: 30px;
    border: 1.5px solid #bef264;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.sobre-gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.sobre-gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.sobre-gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.sobre-gallery-row-bottom .sobre-gallery-item:nth-child(1) {
    animation-delay: 0.4s;
}

.sobre-gallery-row-bottom .sobre-gallery-item:nth-child(2) {
    animation-delay: 0.5s;
}

.sobre-gallery-row-bottom .sobre-gallery-item:nth-child(3) {
    animation-delay: 0.6s;
}

.sobre-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.sobre-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Primeira linha */
.sobre-gallery-item-1 {
    width: 320px;
    height: 384px;
    flex-shrink: 0;
    background: #bef264;
}

.sobre-gallery-item-2 {
    flex: 1;
    height: 320px;
    background: #166534;
}

.sobre-gallery-item-3 {
    width: 222px;
    height: 320px;
    flex-shrink: 0;
    background: #d4d4d4;
}

/* Segunda linha */
.sobre-gallery-item-4 {
    width: 320px;
    height: 250px;
    flex-shrink: 0;
    background: #166534;
}

.sobre-gallery-item-5 {
    width: 320px;
    height: 320px;
    flex-shrink: 0;
    background: #d4d4d4;
}

.sobre-gallery-item-6 {
    flex: 1;
    height: 320px;
    background: #bef264;
}

/* Nossa Equipe Section */
.equipe {
    background: #325142;
    padding: 80px 0;
    position: relative;
}

.equipe-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.equipe-header {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.equipe-location {
    width: auto;
    min-width: fit-content;
    height: 20px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    outline: 0.32px solid rgba(255, 255, 255, 0.3);
    outline-offset: -0.32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.equipe-location div {
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 12px;
}

.equipe-title {
    width: auto;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.equipe-title-green {
    color: #bef264;
    font-size: 4rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 62px;
    text-align: center;
}

.equipe-title-green-light {
    color: white;
    font-size: 4rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 62px;
    text-align: center;
}

.equipe-description {
    width: 100%;
    max-width: 899px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.6;
    margin-top: 1rem;
}

.equipe-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    padding: 20px 60px;
    margin: -20px auto;
}

.equipe-carousel {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 20px 0;
}

.equipe-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: auto;
}

.equipe-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.equipe-prev {
    left: 0;
}

.equipe-next {
    right: 0;
}

.equipe-pills {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.equipe-pill {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.equipe-pill:hover {
    background: rgba(255, 255, 255, 0.5);
}

.equipe-pill.active {
    background: #bef264;
    width: 24px;
    border-radius: 4px;
}

.equipe-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(190, 242, 100, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 280px;
    min-width: 280px;
}

.equipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.equipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.equipe-card-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.equipe-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipe-card:hover .equipe-card-img img {
    transform: scale(1.05);
}

.equipe-card-info {
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.equipe-card-info h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Host Grotesk', sans-serif;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.equipe-card-info span {
    color: #71717a;
    font-size: 0.875rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .equipe-carousel-wrapper {
        padding: 0 50px;
    }

    .equipe-card {
        flex: 0 0 260px;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .sobre {
        padding: 60px 0;
    }

    .sobre-img-top {
        max-width: 180px;
        top: -50px;
        left: -30px;
    }

    .sobre-img-bottom {
        max-width: 180px;
        bottom: -250px;
        right: -30px;
    }

    .sobre-wrapper {
        padding: 40px 20px;
    }

    .sobre-header {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .sobre-location {
        margin: 0 auto;
    }

    .sobre-location div {
        text-align: center;
    }

    .sobre-title {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .sobre-title-green,
    .sobre-title-green-light {
        font-size: 2.5rem;
        line-height: 48px;
        text-align: center;
    }

    .sobre-description {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .sobre-content {
        margin-top: 2rem;
        gap: 2rem;
        padding: 0 10px;
    }

    .sobre-text-block {
        max-width: 100%;
        text-align: center;
    }

    .sobre-text-block-first,
    .sobre-text-block-second {
        max-width: 100%;
        min-height: auto;
    }

    .sobre-text-light,
    .sobre-text-medium,
    .sobre-text-green {
        font-size: 1rem;
        line-height: 1.6;
    }

    .sobre-gallery {
        margin: 40px auto 0;
        padding: 20px;
        border-radius: 30px;
        gap: 15px;
    }

    .sobre-gallery-row {
        flex-direction: column;
        gap: 15px;
        height: auto;
    }

    .sobre-gallery-row-top,
    .sobre-gallery-row-bottom {
        height: auto;
    }

    .sobre-gallery-item {
        border-radius: 20px;
    }

    .sobre-gallery-item-1,
    .sobre-gallery-item-2,
    .sobre-gallery-item-3,
    .sobre-gallery-item-4 {
        width: 100%;
        height: 200px;
        flex-shrink: 0;
    }

    .sobre-gallery-item-5,
    .sobre-gallery-item-6 {
        display: none;
    }

    /* Equipe Mobile */
    .equipe {
        padding: 60px 0;
    }

    .equipe-wrapper {
        padding: 40px 20px;
        gap: 2rem;
    }

    .equipe-title-green,
    .equipe-title-green-light {
        font-size: 2.5rem;
        line-height: 48px;
    }

    .equipe-description {
        font-size: 1rem;
    }

    .equipe-carousel-wrapper {
        padding: 10px 50px;
        margin: 0 auto;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .equipe-carousel {
        gap: 20px;
        padding: 10px 0;
    }

    .equipe-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
        box-sizing: border-box;
    }

    .equipe-card-img {
        width: 100%;
        height: 280px;
    }

    .equipe-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .equipe-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
        z-index: 10;
    }

    .equipe-prev {
        left: 8px;
    }

    .equipe-next {
        right: 8px;
    }

    .equipe-card-info {
        padding: 16px;
    }

    .equipe-card-info h3 {
        font-size: 1.1rem;
    }

    .equipe-card-info span {
        font-size: 0.85rem;
    }
}

/* ==================== SEÇÃO ETAPAS ==================== */
.etapas {
    background: #fafaf9;
    padding: 100px 0;
    position: relative;
}

.etapas-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.etapas-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 800px;
}

.etapas-location {
    display: inline-flex;
    padding: 8px 20px;
    background: rgba(22, 101, 52, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(22, 101, 52, 0.2);
}

.etapas-location div {
    color: #166534;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
}

.etapas-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.etapas-title-green {
    color: #166534;
    font-size: 4rem;
    font-weight: 500;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.1;
}

.etapas-title-green-light {
    color: #166534;
    font-size: 4rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1.1;
}

/* Etapas Content - Grid de cards */
.etapas-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

.etapa-item {
    position: relative;
    flex: 0 0 384px;
    width: 384px;
    max-width: 384px;
}

/* Badge com número */
.etapa-number-badge {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.etapa-number-inner {
    width: 52px;
    height: 52px;
    background: linear-gradient(to bottom, #d9f99d, #166534);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.etapa-number-inner span {
    color: white;
    font-size: 2.25rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 1;
}

/* Card principal */
.etapa-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1.5px solid #d4d4d8;
    padding: 40px 24px 24px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 340px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etapa-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Host Grotesk', sans-serif;
    color: #166534;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 32px;
}

.etapa-card p {
    font-size: 0.875rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    color: #71717a;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.etapa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(22, 101, 52, 0.1);
}

/* Ícone dentro do card */
.etapa-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    border-radius: 12px;
    border: 1px solid #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.etapa-icon img {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
}

/* Etapas Responsivo */
@media (max-width: 1024px) {
    .etapas-content {
        flex-wrap: wrap;
    }

    .etapa-item {
        flex: 0 0 320px;
        width: 320px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .etapas {
        padding: 60px 0;
    }

    .etapas-wrapper {
        gap: 40px;
    }

    .etapas-title-green,
    .etapas-title-green-light {
        font-size: 2.5rem;
    }

    .etapas-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 20px;
    }

    .etapa-item {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .etapa-card {
        height: auto;
        min-height: 260px;
        padding: 50px 24px 24px;
    }

    .etapa-card h3 {
        font-size: 1.25rem;
        min-height: auto;
    }

    .etapa-card p {
        font-size: 0.9rem;
    }

    .etapa-number-badge {
        width: 56px;
        height: 56px;
        top: -16px;
        left: 16px;
    }

    .etapa-number-inner {
        width: 44px;
        height: 44px;
    }

    .etapa-number-inner span {
        font-size: 1.75rem;
    }
}

/* ==================== SEÇÃO AGENDAMENTO ==================== */
.agendamento {
    background: linear-gradient(135deg, #1a3d2e 0%, #0f2a1f 50%, #0a1f16 100%);
    padding: 100px 0;
    position: relative;
}

.agendamento-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.agendamento-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.agendamento-title {
    font-size: 4rem;
    font-family: 'Host Grotesk', sans-serif;
    line-height: 62px;
    max-width: 900px;
}

.agendamento-title-lime {
    color: #d9f99d;
    font-weight: 400;
}

.agendamento-title-white {
    color: #ffffff;
    font-weight: 300;
}

.agendamento-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'Host Grotesk', sans-serif;
    color: #ffffff;
    line-height: 1.4;
    margin-top: 8px;
    max-width: 623px;
}

.agendamento-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.agendamento-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 593px;
}

.agendamento-form label {
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.agendamento-form input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: 'Host Grotesk', sans-serif;
    color: #333;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    outline: none;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.agendamento-form input::placeholder {
    color: #9ca3af;
}

.agendamento-form input:focus {
    box-shadow: 0 0 0 3px rgba(190, 242, 100, 0.3);
}

.agendamento-btn {
    width: 100%;
    max-width: 593px;
    height: 64px;
    padding: 4px;
    background: linear-gradient(to bottom right, white, #f7fee7);
    border: none;
    border-radius: 20.03px;
    outline: 1.18px solid rgba(255, 255, 255, 0.6);
    outline-offset: -1.18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.3s;
    margin-top: 10px;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: 'Host Grotesk', sans-serif;
    color: #404040;
}

.agendamento-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.agendamento-btn svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.agendamento-btn svg path,
.agendamento-btn svg line,
.agendamento-btn svg rect {
    stroke: #404040;
}

/* Agendamento Responsivo */
@media (max-width: 768px) {
    .agendamento {
        padding: 60px 0;
    }

    .agendamento-wrapper {
        padding: 0 20px;
    }

    .agendamento-title {
        font-size: 2.5rem;
        line-height: 48px;
    }

    .agendamento-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Esconde os campos do formulário no mobile */
    .agendamento-form .form-group {
        display: none;
    }

    .agendamento-btn {
        height: 56px;
        font-size: 1rem;
        border-radius: 16px;
        gap: 12px;
    }

    .agendamento-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   CARROSSEL EQUIPE - MODELO EXATO DA FOTO
   ============================================ */

.equipe {
    background-color: #325142;
    /* Fundo verde escuro conforme a referência */
    padding: 80px 0;
}

.equipe-card {
    position: relative;
    flex: 0 0 320px;
    width: 320px;
    height: 520px;
    background: #ffffff;
    /* Branco sólido, sem transparência */
    border-radius: 50px;
    /* Cantos bem arredondados conforme a foto */
    border: 2px solid #bef264;
    /* Borda lime */
    padding: 15px;
    /* Cria a moldura branca ao redor da imagem */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: default;
}

.equipe-card:hover {
    transform: translateY(-8px);
}

.equipe-card-img {
    width: 100%;
    height: 320px;
    border-radius: 35px 35px 0 0;
    /* Arredondado apenas no topo como na foto */
    overflow: hidden;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.equipe-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.equipe-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0 10px 20px 10px;
    background: transparent;
    /* Usa o branco do card pai */
}

.equipe-card-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #166534;
    /* Verde escuro do nome */
    font-weight: 700;
    line-height: 1.2;
}

.equipe-card-info span {
    display: block;
    font-size: 1rem;
    color: #888888;
    /* Cinza da descrição */
    font-weight: 400;
    line-height: 1.4;
    padding: 0 5px;
}

/* Ajustes de Carousel e Navegação */
.equipe-carousel-wrapper {
    padding: 40px 20px !important;
    max-width: 1400px;
    margin: 0 auto;
}

.equipe-carousel {
    display: flex;
    gap: 30px !important;
    padding: 20px 0 !important;
}

.equipe-prev,
.equipe-next {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}