:root {
    --terracota: #A65B42;
    --marrom: #41322A;
    --verde: #4b6043;
    --creme: #F2E7DA;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--creme);
    color: var(--marrom);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(242, 231, 218, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--verde);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: .25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    width: 80px;
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.nav-cta {
    background-color: var(--verde);
    color: var(--creme);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nav-cta:hover {
    background-color: var(--marrom);
    transform: translateY(-2px);
}

/* Main */
main {
    margin-top: 100px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    opacity: 1;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--marrom);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}

.hero-title-line {
    display: block;
    opacity: 1;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    color: var(--terracota);
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 1;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--verde);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 1;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary {
    background-color: #25D366;
    color: white;
}

.cta-primary:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: var(--marrom);
    border: 2px solid var(--marrom);
}

.cta-secondary:hover {
    background-color: var(--marrom);
    color: var(--creme);
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Carousel Section */
.carousel-section {
    padding: 3rem 2rem;
    background-color: white;
}

.carousel-container {
    max-width: 1300px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 3rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--creme) 0%, white 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
}

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

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
}

.carousel-slide p {
    font-size: 1.5rem;
    color: var(--marrom);
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(75, 96, 67, 0.8);
    color: var(--creme);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background-color: var(--verde);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    background-color: var(--creme);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--verde);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--terracota);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--verde) 0%, var(--marrom) 100%);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--marrom);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.about .section-title {
    color: var(--creme);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: rgba(242, 231, 218, 0.95);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--marrom);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: var(--verde);
    font-size: 1.1rem;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--terracota), var(--verde));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--marrom);
    font-size: 1.5rem;
    font-weight: 700;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--verde);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--verde) 0%, var(--terracota) 100%);
    padding: 6rem 2rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.section-title-light {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--creme);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-subtitle {
    color: var(--creme);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 1;
}

.lead-form input {
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    background-color: var(--creme);
    color: var(--marrom);
    font-family: inherit;
}

.lead-form input:focus {
    outline: 3px solid var(--marrom);
}

.lead-form button {
    background-color: var(--marrom);
    color: var(--creme);
    border: none;
    padding: 1.3rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
}

.lead-form button:hover {
    background-color: var(--creme);
    color: var(--marrom);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Story Section */
.story {
    padding: 6rem 2rem;
    background-color: var(--creme);
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    opacity: 1;
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--marrom);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.story-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--verde), var(--terracota));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-icon {
    font-size: 8rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.story-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--verde);
    margin: -2rem auto 3rem;
    max-width: 700px;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background-color: white;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    background: linear-gradient(135deg, var(--creme) 0%, white 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--verde);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--terracota);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--terracota), var(--marrom));
    color: var(--creme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(166, 91, 66, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--marrom);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--verde);
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

/* Benefits Section */
.benefits {
    padding: 6rem 2rem;
    background-color: white;
}

.benefits-content {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: var(--creme);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--terracota);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--marrom);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--verde);
    font-size: 1rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background-color: var(--creme);
    border-top: 2px solid var(--verde);
    border-bottom: 2px solid var(--verde);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--verde);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.lead-form {
    opacity: 1;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1.5fr minmax(200px, auto);
    gap: 1rem;
    align-items: center;
}

.lead-form input {
    padding: 1.2rem;
    border: 2px solid var(--verde);
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    color: var(--marrom);
    font-family: inherit;
    transition: all 0.3s ease;
}

.lead-form input:focus {
    outline: none;
    border-color: var(--terracota);
    box-shadow: 0 0 0 3px rgba(166, 91, 66, 0.1);
}

.lead-form button {
    background-color: var(--verde);
    color: var(--creme);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: 200px;
}

.lead-form button:hover {
    background-color: var(--terracota);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(166, 91, 66, 0.3);
}

.lead-form button svg {
    transition: transform 0.3s ease;
}

.lead-form button:hover svg {
    transform: scale(1.2);
}

.newsletter-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--verde);
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--terracota) 0%, var(--marrom) 100%);
}

.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--creme);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: rgba(242, 231, 218, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonial-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--marrom);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--verde);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Form - Updated */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 1;
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--creme);
    color: var(--marrom);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--creme);
    background-color: rgba(242, 231, 218, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background-color: var(--marrom);
    color: var(--creme);
    border: none;
    padding: 1.3rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.contact-form button:hover {
    background-color: var(--creme);
    color: var(--marrom);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-form button svg {
    transition: transform 0.3s ease;
}

.contact-form button:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--marrom);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    width: 18em;
    height: 9em;
    filter: brightness(0) invert(1);
}

.footer p {
    color: var(--creme);
    font-size: 0.95rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 1;
    z-index: 10;
}

.scroll-indicator-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terracota), transparent);
    border-radius: 2px;
}

.scroll-indicator-text {
    font-size: 0.85rem;
    color: var(--verde);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Efeitos de ondas sutis no background */
.about,
.contact {
    background-size: 200% 200%;
    background-position: 50% 0%;
    position: relative;
    overflow: hidden;
}

.about::before,
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(242, 231, 218, 0.1) 0%, transparent 50%);
    animation: waves 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waves {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
        opacity: 0.5;
    }
}

/* Melhorias de performance */
.hero-logo,
.about-card,
.product-card,
.card-icon {
    will-change: transform;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        max-width: 300px;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-paragraph {
        text-align: center;
    }

    .about-grid,
    .products-grid,
    .process-steps,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-step p {
        text-align: left;
    }

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

    .form-group {
        grid-template-columns: 1fr;
    }

    .lead-form button {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .nav {
        padding: 1rem;
    }

    .logo-container {
        width: 60px;
    }

    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    main {
        margin-top: 80px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .carousel-slide img {
        max-width: 250px;
    }

    .carousel-slide p {
        font-size: 1.2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}


