/* =============== VARIABLES =============== */
:root {
    --primary-color: #a0ae09; /* Green from logo */
    --secondary-color: #A3AD33; /* Alternate green */
    --dark-color: #254247; /* Dark blue/green from logo */
    --black-color: #32373c; /* Blackish */
    --gray-bg: #f5f7f9;
    --text-color: #555555;
    --white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =============== RESET & BASE =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    color: var(--dark-color);
    font-weight: 700;
}

strong, b {
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============== BUTTONS =============== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--black-color);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.bg-light {
    background-color: var(--gray-bg);
}

/* =============== HEADER =============== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 45px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    display: none;
    min-width: 250px;
    padding: 10px 0;
    border-radius: 4px;
    z-index: 10;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
}

/* =============== HERO SLIDER =============== */
.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--black-color);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

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

.slide-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.slide-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
    color: var(--dark-color);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
}

/* =============== INTRO SECTION =============== */
.intro-text {
    padding: 80px 0;
    text-align: center;
}

.intro-text h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-color);
}

.intro-text h2 strong {
    color: var(--dark-color);
}

/* =============== FEATURES (EXACT LAYOUT REPLICATION) =============== */
.feature {
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.feature-1, .feature-3 {
    background-color: var(--primary-color);
}

.feature-2 {
    background-color: var(--dark-color);
}

.feature-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.feature-container-right {
    justify-content: flex-start;
}

.feature-container-left {
    justify-content: flex-end;
}

.feature .feature-content {
    max-width: 470px;
    color: #ffffff;
}

.feature .feature-content h2 {
    font-size: 50px;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.2;
}

.feature .feature-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #ffffff;
}

.feature .feature-content strong {
    color: #ffffff;
}

.feature-content .btn {
    margin-top: 10px;
}

/* Buttons */
.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 0;
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-outline-white:hover {
    background-color: var(--primary-color);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-square {
    border-radius: 0;
}

/* Feature Images */
@media (min-width: 1025px) {
    .feature-image img {
        width: 100%;
        height: auto; /* Removemos o 100% para parar de seguir a altura do texto */
        aspect-ratio: 1 / 1; /* Trava a imagem em um quadrado perfeito */
        object-fit: cover;
        object-position: top center; /* Foca no rosto e não no peito/barriga */
        display: block;
    }
    .feature-image {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%;
        z-index: 1;
        overflow: hidden;
    }
    
    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .feature-image-right {
        right: 0;
    }

    .feature-image-left {
        left: 0;
    }
    
    .feature-content-right {
        margin-left: auto;
    }
}

@media (max-width: 1024px) {
    .feature {
        flex-direction: column;
    }
    .feature-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .feature-image {
        position: relative;
        width: 100%;
        height: 400px;
    }
    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* =============== VIDEO SECTION =============== */
.video-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-bg) 100%);
    text-align: center;
}

.video-container h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--text-color);
}

.video-container h2 strong {
    color: var(--dark-color);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

.video-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.play-text {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--dark-color);
}

/* =============== STATS SECTION =============== */
.stats {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.stats h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 400;
}

.stats h2 strong {
    font-weight: 700;
}

/* =============== TESTIMONIALS =============== */
.testimonials {
    padding: 100px 0;
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--gray-bg);
    padding: 50px;
    border-radius: var(--border-radius);
    position: relative;
}

.card-info h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.card-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.card-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-image {
    flex: 1;
    position: relative;
}

.testimonial-image .photo {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 80%;
    margin-left: auto;
}

.testimonial-image .icon-overlay {
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--white);
    padding: 10px;
    box-shadow: var(--box-shadow);
}

/* =============== CONTACT FORM =============== */
.contact-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    color: var(--white);
}

.contact-container {
    display: flex;
    gap: 60px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 18px;
    opacity: 0.8;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

/* =============== FOOTER =============== */
.footer {
    background-color: var(--black-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-menus ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-menus a {
    transition: color 0.3s;
}

.footer-menus a:hover {
    color: var(--primary-color);
}

.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-contact a {
    font-size: 20px;
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact .address {
    margin-top: 20px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.socials a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 20px 0;
    font-size: 13px;
    opacity: 0.7;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
    .testimonial-container,
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-image img,
    .testimonial-image .photo {
        width: 100%;
    }
    
    .testimonial-image .icon-overlay {
        bottom: -20px;
        left: -20px;
        width: 80px;
        height: 80px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .intro-text h2,
    .video-container h2,
    .stats h2 {
        font-size: 28px;
    }
    
    .contact-text h2 {
        font-size: 32px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

