:root {
    /* Colors */
    --primary-green: #074846;
    --primary-green-dark: #122924;
    --accent-cream: #fdfcf0;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --bg-white: #ffffff;
    --soft-gray: #f5f5f5;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--accent-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: var(--font-heading);
    font-weight: 500;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Base Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--primary-green);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background-color: #1a3b349c;
}

header .btn {
    background-color: white;
}

header a.btn {
    color: #1a3b34;
}

header.scrolled {
    background-color: rgba(26, 59, 52, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.logo img {
    height: 60px;
    /* Adjust based on logo */
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    /* Crucial para o alinhamento vertical */
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Uniformidade com o botão */
}

.nav-links a:hover {
    opacity: 0.7;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

/* Sections */
section {
    padding: 100px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding: 0;
    overflow: hidden;
    background-color: var(--primary-green);
    /* Fallback */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-left: 155px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: 0px;
    margin-right: auto;
    opacity: 0.9;
    text-align: left;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--text-light);
    border-color: var(--text-light);
    transform: scale(1.2);
}

/* Quote Section */
.quote-section {
    padding: 50px 0 50px;
    background-color: var(--accent-cream);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.quote-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leaf-left,
.leaf-right {
    position: absolute;
    top: -20px;
    width: 350px;
    height: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.leaf-left {
    left: -50px;
    background-image: url('../assets/images/leaf-left.png');
}

.leaf-right {
    right: -50px;
    background-image: url('../assets/images/leaf-right.png');
    transform: scaleX(-1);
    /* Opcional: espelhar se necessário */
}

@media (max-width: 992px) {

    .leaf-left,
    .leaf-right {
        width: 200px;
        height: 200px;
    }
}

/* Experience Slider */
.experience-slider-section {
    padding: 0;
    margin: 20px 0;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-item {
    flex: 0 0 350px;
    width: 350px;
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.slider-item:active {
    cursor: grabbing;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.slider-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    z-index: 2;
    text-align: center;
}

.item-overlay h4 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    font-family: var(--font-body);
    /* Ou heading conforme desejado */
}

/* Slider Nav */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-nav:hover {
    background: rgba(26, 59, 52, 0.8);
    border-color: white;
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

@media (max-width: 1200px) {
    .slider-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 992px) {
    .slider-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 600px) {
    .slider-item {
        flex: 0 0 100%;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }
}

.grid-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    background-color: var(--primary-green);
    border-radius: 4px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.grid-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.grid-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.grid-item h4 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Chef Section */
.chef-section {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 0;
    display: flex;
}

.chef-col {
    flex: 1;
}

.chef-img {
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.chef-content {
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.chef-content h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.chef-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.chef-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

/* Ticker Section */
.ticker {
    background-color: var(--primary-green);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 50px;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 50px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Customizations */
@media (max-width: 1200px) {
    .chef-content {
        padding: 60px;
    }
}

@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .grid-item {
        height: 400px;
    }

    .chef-section {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    /* Mobile Menu Logic */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background-color: var(--primary-green);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-smooth);
        display: flex;
        /* Override display: none from earlier if needed */
    }

    .nav-links.active {
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    header.scrolled .logo h2,
    .logo h2 {
        font-size: 1.5rem;
    }

    form div {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .chef-content {
        padding: 40px 20px;
    }
}

/* History Section */
.history-section {
    padding: 100px 0;
    background-color: var(--accent-cream);
}

.history-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.history-text {
    flex: 1;
}

.history-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
    opacity: 0.8;
}

.history-video {
    flex: 1.2;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    .history-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .history-text p {
        margin: 0 auto;
    }

    .history-text h2 {
        font-size: 2.5rem;
    }
}

/* Clients Ticker Section */
.clients-ticker-section {
    padding: 20px 0;
    background-color: var(--accent-cream);
    text-align: center;
}

.clients-ticker-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-green);
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Fade effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-marquee-content {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: logo-scroll 40s linear infinite;
    /* Elegant slow movement */
}

/* Pause on hover if desired, but user said "automatic" */
/* .logo-marquee-content:hover { animation-play-state: paused; } */

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 60px;
    transition: opacity 0.3s ease;
}

.client-logo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

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

    100% {
        /* Translates exactly half because content is duplicated */
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-marquee-content {
        gap: 40px;
    }

    .client-logo {
        font-size: 0.9rem;
    }
}

/* Budget Form Section Styles */
.budget-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--accent-cream);
    overflow: hidden;
}

.budget-grid-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.budget-info {
    flex: 1;
    max-width: 450px;
    text-align: left;
}

.budget-info h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.budget-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

.budget-form-wrapper {
    flex: 1.5;
    width: 100%;
}

.budget-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    gap: 20px;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.form-row.three-cols {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green-dark);
    text-align: left;
}

.budget-form input,
.budget-form select,
.budget-form textarea {
    padding: 15px 20px;
    background-color: #f4f5f7;
    border: 1px solid transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.budget-form input:focus,
.budget-form select:focus,
.budget-form textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background-color: var(--primary-green-dark);
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(26, 59, 52, 0.2);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 59, 52, 0.3);
    background-color: #122924;
}

/* Decorations */
.wave-top,
.wave-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    opacity: 0.2;
    z-index: 1;
}

.wave-top {
    top: 40px;
}

.wave-bottom {
    bottom: 40px;
}

@media (max-width: 992px) {
    .budget-grid-container {
        flex-direction: column;
        gap: 60px;
    }

    .budget-info {
        max-width: 100%;
        text-align: center;
    }

    .form-row.two-cols,
    .form-row.three-cols {
        grid-template-columns: 1fr;
    }
}

/* Gallery Preview Section Styles */
.gallery-preview-section {
    padding: 100px 0;
    background-color: var(--accent-cream);
    position: relative;
    overflow: hidden;
}

.gallery-grid-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-info {
    flex: 1;
    max-width: 550px;
}

.gallery-info h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.gallery-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.gallery-slider-wrapper {
    flex: 1;
    position: relative;
    max-width: 1100px;
    /* 3 items of 350px + gap */
    width: 100%;
}

.gallery-slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
}

.gallery-slide {
    flex: 0 0 350px;
    width: 350px;
    height: 500px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

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

/* Gallery Nav Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.gallery-nav:hover {
    background: var(--primary-green);
    border-color: white;
}

.gallery-nav.prev {
    left: -22px;
}

.gallery-nav.next {
    right: -22px;
}

.gallery-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .gallery-grid-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .gallery-info {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .gallery-slider-wrapper {
        width: 100%;
        max-width: 720px;
        /* 2 items on tablet */
    }

    .gallery-slider {
        height: 500px;
    }

    .gallery-slide {
        flex: 0 0 350px;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-slider-wrapper {
        max-width: 350px;
        /* 1 item on mobile */
    }
}

/* Events Highlights Section (Videos) */
.events-section {
    padding: 100px 0;
    background-color: var(--accent-cream);
    position: relative;
    text-align: center;
}

.wave-top-center {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    opacity: 0.3;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.video-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.video-card {
    text-align: left;
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.video-card:hover .play-btn {
    background-color: var(--primary-green);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info h3 {
    font-size: 1.2rem;
    color: var(--primary-green-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.video-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* Responsiveness for Video Grid */
@media (max-width: 1200px) {
    .video-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .video-card-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.22rem;
    }
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 2001;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.video-modal-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.video-modal-close:hover {
    transform: rotate(90deg);
}

body.modal-open {
    overflow: hidden;
}


/* Blog Slider Styles */
.blog-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-slider-container {
    overflow: hidden;
    width: 100%;
}

.blog-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    gap: 30px;
}

.blog-card {
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;
}

.blog-card-inner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover .blog-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-inner img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-inner img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 30px;
    text-align: left;
    /* Garante alinhamento � esquerda conforme solicitado */
}

.blog-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.blog-card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green-dark);
}

.blog-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    gap: 10px;
}

/* Blog Navigation Buttons */
.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-nav:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.blog-nav.prev {
    left: 0;
}

.blog-nav.next {
    right: 0;
}

/* Responsive adjustments for Blog Slider */
@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .blog-slider-wrapper {
        padding: 0 10px;
    }

    .blog-nav {
        display: none;
    }

    .blog-card {
        flex: 0 0 100%;
    }
}


/* Footer Styles */
.main-footer {
    background-color: #fdfdf5;
    /* Cor clara conforme imagem */
    color: var(--primary-green);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 2.2rem;
    color: var(--primary-green-dark);
}

.footer-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-green-dark);
}

.footer-info-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: var(--primary-green-dark);
    color: white;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-bottom-content strong {
    color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-svg {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-svg {
        width: 30px;
        height: 30px;
    }
}


/* Hero Slider Refactor - Separate Content per Slide */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: var(--primary-green);
    display: block !important;
    /* Desabilitando flex do pai para que os slides mandem */
}

.hero-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
    /* Texto entra depois da imagem */
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Ajuste fino para os botes de cada slide */
.hero-btns .btn {
    margin-top: 10px;
}

/* Feedback do Formulário */
.form-feedback {
    display: none !important;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.form-feedback.show {
    display: block !important;
}


.form-feedback.success {
    background-color: rgba(7, 72, 70, 0.1);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.form-feedback.error {
    background-color: rgba(200, 0, 0, 0.1);
    color: #c80000;
    border: 1px solid #c80000;
}