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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* HERO IMPACTANTE */
.hero {
    background: url('assets/bghero.jpg') no-repeat center center / cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative; z-index: 2; text-align: center; color: white; width: 100%;
    animation: heroSlideIn 1.5s ease-out;
}

.hero-logo {
    margin-bottom: 15px;
    max-width: 120px;
    height: auto;
}

.hero h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #DAA520, #FFD700, #FFFFFF, #DAA520);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h2 {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: linear-gradient(45deg, #DAA520, #FFD700, #DAA520);
    background-size: 200% 200%;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin: 15px 10px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
    animation: pulse 2s infinite;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.6);
    animation: none;
}

.trust-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.trust-badge {
    display: flex;
    align-items: center;
    color: #DAA520;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(218, 165, 32, 0.1);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}

.trust-badge i {
    margin-right: 10px;
}

.trust-badge:hover {
    background: rgba(218, 165, 32, 0.2);
    transform: translateY(-3px);
}

/* PRODUTOS FLUIDOS */
.products { background: #f8f8f8; padding: 80px 0 100px; }

.products h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 80px;
    color: #000;
    font-weight: 800;
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 4px;
    background: linear-gradient(45deg, #DAA520, #FFD700);
    border-radius: 2px;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    margin-bottom: 60px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.product-item:nth-child(even) { direction: rtl; }
.product-item:nth-child(even) .product-content { direction: ltr; }
.product-item:nth-child(even) .product-visual { direction: ltr; }

.product-content { padding: 60px 50px; }

.product-visual {
    height: 500px;
    background: #000;
    position: relative;
    border-left: 5px solid #DAA520;
    overflow: hidden;
    direction: ltr;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.carousel-inner {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}

.carousel-inner img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(218, 165, 32, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(218, 165, 32, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.product-item h3 { font-size: 2.2rem; color: #DAA520; margin-bottom: 25px; font-weight: 700; }

.product-text {
    font-size: 1.2rem; color: #555; margin-bottom: 35px; line-height: 1.8;
}

.product-cta {
    background: linear-gradient(45deg, #DAA520, #FFD700);
    color: #000; padding: 15px 35px; text-decoration: none; border-radius: 50px;
    font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; display: inline-block;
}

.product-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

/* SOBRE - INTEGRADO */
.about {
    background: #000000; color: white; padding: 100px 0; text-align: center; position: relative;
}

.about::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.about-content { position: relative; z-index: 2; }

.about h2 {
    font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 40px; color: #DAA520; font-weight: 700;
}

.about-text {
    font-size: 1.4rem; max-width: 900px; margin: 0 auto; line-height: 1.8; opacity: 0.95;
}

/* DEPOIMENTOS */
.testimonials { 
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/bghero.jpg') no-repeat center center / cover;
    opacity: 0.1;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    text-align: center; 
    font-size: clamp(2rem, 4vw, 3rem); 
    margin-bottom: 60px; 
    color: #DAA520;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-content {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 60px;
    border-radius: 15px;
    border: 2px solid rgba(218, 165, 32, 0.3);
    backdrop-filter: blur(10px);
}

.testimonials-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #f5f5f5;
    margin-bottom: 30px;
    text-align: center;
}

.testimonials-content p:last-child {
    margin-bottom: 0;
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
}

/* FAQ */
.faq { background: white; padding: 100px 0; }

.faq h2 {
    text-align: center; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 60px; 
    color: #000; font-weight: 700;
}

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    margin-bottom: 20px; border-radius: 15px; overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #f0f0f0;
}

.faq-question {
    background: linear-gradient(45deg, #DAA520, #FFD700); color: #000; padding: 25px; 
    font-weight: 700; font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease;
}

.faq-question:hover { background: linear-gradient(45deg, #FFD700, #DAA520); }

.faq-answer {
    padding: 25px; background: white; color: #555; font-size: 1.1rem; line-height: 1.7; display: none;
}

/* CHAMADA FINAL */
.final-cta {
    background: url('assets/bghero.jpg') no-repeat center center / cover;
    color: white; padding: 120px 0; text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}

.final-cta h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 60px; color: #DAA520; font-weight: 800;
    position: relative; z-index: 2;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    background: linear-gradient(45deg, #DAA520, #FFD700, #DAA520); background-size: 200% 200%;
    color: #000; padding: 25px 60px; text-decoration: none; border-radius: 60px; font-weight: 800; 
    font-size: 1.4rem; display: inline-block; transition: all 0.4s ease;
    animation: gradientShift 3s ease-in-out infinite alternate;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
    position: relative; z-index: 2;
}

.final-cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.6);
}

/* FOOTER */
.footer {
    background: #000; color: white; padding: 60px 0; text-align: center; border-top: 3px solid #DAA520;
}

.footer h3 { color: #DAA520; margin-bottom: 20px; font-size: 1.4rem; font-weight: 700; }
.footer p { margin-bottom: 10px; font-size: 1.1rem; }
.lgpd-notice { margin-top: 30px; font-size: 0.9rem; color: #aaa; font-style: italic; }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }

.whatsapp-button {
    background: linear-gradient(45deg, #25D366, #128C7E); color: white; width: 70px; height: 70px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; 
    font-size: 28px; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
}

/* ANIMAÇÕES */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-logo {
        max-width: 100px;
        margin-bottom: 15px;
    }
    
    .hero h1 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hero h2 {
        font-size: clamp(0.85rem, 3vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 10px 5px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
    }
    
    .trust-badge {
        font-size: 0.9rem;
        padding: 10px 18px;
        width: 90%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-badge i {
        margin-right: 8px;
        font-size: 1rem;
    }
    
    .product-item { 
        grid-template-columns: 1fr; 
        text-align: center;
        margin-bottom: 30px;
    }
    
    .product-item:nth-child(even) { 
        direction: ltr; 
    }
    
    .product-visual { 
        order: -1; 
        height: 300px; 
        border-left: none; 
        border-top: 5px solid #DAA520; 
    }
    
    .product-content { 
        padding: 30px 20px; 
    }
    
    .product-item h3 {
        font-size: 1.5rem;
    }
    
    .product-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .product-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        padding: 10px 15px;
        font-size: 20px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    
    .final-cta-button { 
        padding: 15px 35px; 
        font-size: 1.1rem; 
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .about-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 1.6rem;
        margin-bottom: 40px;
        padding: 0 20px;
        letter-spacing: 0.5px;
    }
    
    .testimonials-content {
        padding: 35px 25px;
        margin: 0 20px 40px;
    }
    
    .testimonials-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    
    .testimonials-cta {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 18px;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        padding: 18px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .modal-carousel {
        width: 95%;
        height: 70%;
    }
    
    .modal-btn {
        padding: 12px 15px;
        font-size: 24px;
    }
    
    #modal-prev { left: 5px; }
    #modal-next { right: 5px; }
    
    .close {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
}

html { scroll-behavior: smooth; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.modal-content {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.close:hover {
    color: #DAA520;
}

.modal-carousel {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    max-height: 800px;
}

.modal-carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
    position: relative;
}

.modal-carousel-inner img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.modal-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(218, 165, 32, 0.9);
    color: white;
    border: none;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 30px;
    z-index: 2001;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: rgba(218, 165, 32, 1);
    transform: translateY(-50%) scale(1.15);
}

#modal-prev { left: 20px; }
#modal-next { right: 20px; }