@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --enx-primary: #C17F59;
    --enx-primary-dark: #A06241;
    --enx-secondary: #F4CCB0;
    --enx-bg-light: #FDFBF9;
    --enx-white: #ffffff;
    --enx-text-dark: #2C2623;
    --enx-text-light: #706B68;
    --enx-success: #25D366;
    --enx-shadow-soft: 0 10px 30px rgba(193, 127, 89, 0.08);
    --enx-shadow-hover: 0 15px 40px rgba(193, 127, 89, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--enx-text-light);
    background-color: #FAFAF7;
}

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

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4 {
    color: var(--enx-text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; text-align: center; margin-bottom: 4rem; position: relative; }
h3 { font-size: 1.4rem; font-weight: 600; }
p { margin-top: 0; margin-bottom: 1.5rem; color: var(--enx-text-light); font-weight: 400; font-size: 1.05rem; }

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--enx-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.enx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
}

.enx-section {
    padding: 100px 0;
}

.enx-text-center { text-align: center; }
.enx-flex { display: flex; flex-wrap: wrap; }

.enx-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
    border: 1px solid transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.enx-btn-primary {
    background: var(--enx-primary);
    color: white !important;
    box-shadow: 0 8px 20px rgba(193, 127, 89, 0.25);
}

.enx-btn-primary:hover {
    background: var(--enx-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(193, 127, 89, 0.35);
}

.enx-btn-outline {
    background: transparent;
    border-color: var(--enx-white);
    color: var(--enx-white) !important;
    border-width: 2px;
}

.enx-btn-outline:hover {
    background: var(--enx-white);
    color: var(--enx-primary) !important;
}

.enx-btn-whatsapp {
    background-color: var(--enx-success);
    color: white !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    border: none;
}

.enx-btn-whatsapp:hover {
    background-color: #1ebd56;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

/* HEADER */
.enx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    z-index: 9999;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.enx-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enx-logo {
    display: block;
    line-height: 0;
    transition: transform 0.3s ease;
    padding: 5px 0;
}

.enx-logo:hover {
    transform: scale(1.02);
}

.enx-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.enx-nav ul {
    display: flex;
    gap: 35px;
}

.enx-nav a {
    color: var(--enx-text-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.enx-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--enx-primary);
    transition: width 0.3s;
}

.enx-nav a:hover {
    color: var(--enx-primary) !important;
}

.enx-nav a:hover::after {
    width: 100%;
}

.enx-mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--enx-text-dark);
    cursor: pointer;
    padding: 5px;
}

/* HERO SECTION */
.enx-hero {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.25)), url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.enx-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.enx-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.enx-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.enx-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ABOUT */
.enx-about {
    background-color: var(--enx-white);
}

.enx-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.enx-about-img {
    position: relative;
}

.enx-about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--enx-shadow-soft);
}

.enx-about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--enx-primary);
    border-radius: 20px;
    z-index: 0;
    opacity: 0.3;
}

.enx-subtitle {
    color: var(--enx-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* PRODUCTS */
.enx-products {
    background-color: var(--enx-bg-light);
}

.enx-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.enx-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: none;
    display: flex;
    flex-direction: column;
}

.enx-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--enx-shadow-hover);
}

.enx-product-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.enx-product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.enx-product-card:hover .enx-product-img-wrapper img {
    transform: scale(1.1);
}

.enx-product-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.enx-product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--enx-primary-dark);
}

.enx-product-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--enx-text-light);
    line-height: 1.4;
}

.enx-product-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--enx-primary);
    font-weight: 700;
}

/* FEATURES */
.enx-features {
    background-color: var(--enx-white);
}

.enx-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.enx-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: background 0.3s;
}

.enx-feature-item:hover {
    background-color: var(--enx-bg-light);
}

.enx-feature-icon {
    min-width: 50px;
    height: 50px;
    background-color: rgba(193, 127, 89, 0.1);
    color: var(--enx-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* TESTIMONIALS */
.enx-testimonials {
    background-color: var(--enx-bg-light);
    position: relative;
    overflow: hidden;
}

.enx-testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 20rem;
    color: rgba(193, 127, 89, 0.05);
    font-family: serif;
    line-height: 1;
}

.enx-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.enx-testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--enx-shadow-soft);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

.enx-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    display: flex;
    gap: 2px;
}

.enx-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

.enx-testimonial-author {
    font-weight: 700;
    color: var(--enx-primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.enx-testimonial-author::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--enx-secondary);
}

/* FAQ */
.enx-faq {
    background-color: var(--enx-white);
    max-width: 800px;
    margin: 0 auto;
}

.enx-faq-section {
    background-color: var(--enx-white);
}

.enx-faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.enx-faq-question {
    padding: 25px 0;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    color: var(--enx-text-dark);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    transition: color 0.3s;
}

.enx-faq-question:hover {
    color: var(--enx-primary);
}

.enx-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--enx-primary);
    transition: 0.3s;
    margin-left: auto;
    font-weight: 300;
}

.enx-faq-item.active .enx-faq-question::after {
    transform: rotate(45deg);
}

.enx-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.enx-faq-answer p {
    padding-bottom: 25px;
    margin: 0;
    padding-left: 40px;
    color: var(--enx-text-light);
}

.enx-faq-icon {
    width: 22px;
    height: 22px;
    color: var(--enx-secondary);
    flex-shrink: 0;
}

.enx-faq-item.active .enx-faq-icon {
    color: var(--enx-primary);
}

/* CTA FINAL */
.enx-cta-final {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.enx-cta-final h2 {
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.enx-cta-final h2::after {
    background-color: var(--enx-secondary);
}

.enx-cta-final p {
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* FOOTER */
.enx-footer {
    background-color: var(--enx-text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    font-size: 0.95rem;
    position: relative;
    border-top: none;
}

.enx-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--enx-primary), var(--enx-secondary));
}

.enx-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.enx-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.enx-footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.enx-footer-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.6);
}

.enx-footer h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.enx-footer h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: var(--enx-primary);
}

.enx-footer-links li {
    margin-bottom: 15px;
}

.enx-footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.enx-footer-links a::before {
    content: '\203A';
    margin-right: 8px;
    color: var(--enx-primary);
    font-size: 1.2rem;
    line-height: 0;
    transition: 0.3s;
}

.enx-footer-links a:hover {
    color: var(--enx-white) !important;
    transform: translateX(5px);
}

.enx-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.enx-contact-icon {
    color: var(--enx-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.enx-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.enx-copyright a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.enx-copyright a:hover {
    color: var(--enx-primary) !important;
}

/* FLOATING WHATSAPP */
.enx-float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white !important;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enx-float-wa:hover {
    transform: scale(1.1);
}

/* ANIMATIONS */
.enx-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s cubic-bezier(0.25, 1, 0.5, 1), transform 1.0s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.enx-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVIDADE */
@media (max-width: 991px) {
    h1 { font-size: 2.5rem; }
    .enx-hero { padding: 140px 0 80px; }

    .enx-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enx-about-img {
        order: -1;
    }

    .enx-about-img::before {
        display: none;
    }

    .enx-mobile-btn {
        display: block;
        z-index: 10001;
    }

    .enx-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: white;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 10000;
    }

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

    .enx-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .enx-nav a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .enx-copyright {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    .enx-hero h1 { font-size: 1.8rem; }
    .enx-hero p { font-size: 1rem; }
    .enx-hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .enx-btn {
        width: 100%;
    }

    .enx-float-wa {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .enx-section {
        padding: 60px 0;
    }

    .enx-logo img {
        height: 32px;
    }
}