/* Start custom CSS for html, class: .elementor-element-c1f28d3 *//* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D32F2F;
    --primary-dark: #C62828;
    --primary-light: #EF5350;
    --secondary: #1976D2;
    --whatsapp: #25D366;
    --whatsapp-hover: #20BA5A;
    --orange: #FF9800;
    --orange-dark: #FF6F00;
    --background: #FAFAFA;
    --background-alt: #FFF5F5;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 2px solid rgba(211, 47, 47, 0.2);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
}

@media (min-width: 640px) {
    .header-content {
        flex-direction: row;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

@media (min-width: 640px) {
    .logo {
        width: 80px;
        height: 80px;
    }
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 640px) {
    .brand-name {
        font-size: 1.5rem;
    }
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (min-width: 640px) {
    .brand-subtitle {
        font-size: 0.875rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-whatsapp-header {
    background: var(--whatsapp);
    color: var(--white);
    width: 100%;
    font-size: 0.875rem;
    padding: 10px 16px;
}

@media (min-width: 640px) {
    .btn-whatsapp-header {
        width: auto;
        font-size: 1rem;
        padding: 12px 24px;
    }
}

.btn-whatsapp-header:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.02);
}

.btn-whatsapp-hero {
    background: var(--whatsapp);
    color: var(--white);

    /* Atualizado para ficar como no print */
    width: min(520px, 100%);
    justify-content: center;
    padding: 14px 26px;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    box-shadow: none;
}

.btn-whatsapp-hero:hover {
    background: var(--whatsapp-hover);
    transform: none;
    box-shadow: none;
}

.btn-product {
    background: var(--whatsapp);
    color: var(--white);
    width: 100%;
    padding: 10px 16px;
    font-size: 0.875rem;
}

.btn-product:hover {
    background: var(--whatsapp-hover);
}

.btn-whatsapp-footer {
    background: var(--whatsapp);
    color: var(--white);
    margin-top: 12px;
}

.btn-whatsapp-footer:hover {
    background: var(--whatsapp-hover);
}

/* Hero Section - Atualizado para ficar igual ao print */
.hero {
    background: var(--primary);
    padding: 72px 0 0; /* mais respiro */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr; /* esquerda levemente maior */
        gap: 56px;
    }
}

/* Conteúdo Textual - centralizado no desktop também */
.hero-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.25rem;
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    font-size: 1.9rem;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .hero-badge {
        font-size: 2.3rem;
        padding: 14px 38px;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
}

.hero-image-container {
    position: relative;
    background: linear-gradient(135deg, var(--orange) 0%, #FFA726 50%, var(--orange-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    overflow: visible; /* permite bolhas “fora” do container */
}

.decorative-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1; /* atrás da imagem */
}

/* Bolhas reposicionadas como no print */
.shape-1 {
    width: 120px;
    height: 120px;
    background: #3F6FB6;
    opacity: 0.85;
    top: -38px;
    left: 40px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #E91E63;
    opacity: 0.55;
    bottom: -64px;
    right: -26px;
}

/* Secundárias mais discretas */
.shape-3 {
    width: 90px;
    height: 90px;
    background: #FFEB3B;
    opacity: 0.35;
    top: 52%;
    left: -18px;
}

.shape-4 {
    width: 78px;
    height: 78px;
    background: #F44336;
    opacity: 0.25;
    top: 26%;
    right: 18%;
}

.hero-image {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}

/* Hero Phrases */
.hero-phrases {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.phrase-card {
    background: var(--white);
    border-radius: 14px;
    padding: 26px;
    box-shadow: var(--shadow-lg);
}

.phrase-card p {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .phrase-card p {
        font-size: 1.75rem;
    }
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 26px 0;
    margin-top: 54px;
}

.hero-bottom-bar p {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-bottom-bar p {
        font-size: 1.75rem;
    }
}

/* Section Styles */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Products Section */
.products {
    padding: 64px 0;
    background: var(--background-alt);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 16px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.products-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 32px;
}

/* Differentials Section */
.differentials {
    padding: 64px 0;
    background: var(--white);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.differential-card {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.differential-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.differential-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.differential-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.differential-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
    padding: 64px 0;
    background: var(--background-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-section p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-badge {
        font-size: 1.5rem;
        padding: 12px 24px;
    }

    .btn-whatsapp-hero {
        font-size: 1rem;
        padding: 14px 20px;
        width: 100%;
    }

    .phrase-card p {
        font-size: 1.25rem;
    }
}
/* ============================
   PRODUCTS – SLIDER MOBILE/TABLET
============================ */

/* Desktop mantém grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Tablet e mobile viram slider */
@media (max-width: 1023px) {
    .products-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    /* remove scrollbar feio */
    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .products-grid {
        scrollbar-width: none;
    }

    .product-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
}

/* Tablet um pouco mais largo */
@media (min-width: 640px) and (max-width: 1023px) {
    .product-card {
        flex: 0 0 45%;
    }
}

/* Mobile bem focado em 1 produto */
@media (max-width: 639px) {
    .product-card {
        flex: 0 0 90%;
    }
}/* End custom CSS */