* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #f4f6f9;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 3vw, 30px);
    background: linear-gradient(90deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: #ffffff;
}

.logo {
    height: clamp(30px, 5vw, 40px);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: clamp(12px, 2vw, 18px);
}

.nav-links li a {
    text-decoration: none;
    color: #1a2b49;
    font-weight: 500;
    font-size: clamp(13px, 1.8vw, 15px);
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ff4500;
}

.btn-nav {
    background: linear-gradient(45deg, #ff4500, #ff6b00);
    color: #fff;
    padding: clamp(6px, 1.2vw, 8px) clamp(10px, 1.8vw, 14px);
    border-radius: 18px;
    font-weight: 600;
    font-size: clamp(13px, 1.8vw, 14px);
    box-shadow: 0 2px 6px rgba(255, 69, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(255, 69, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: clamp(18px, 3.5vw, 22px);
    cursor: pointer;
    color: #1a2b49;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #ff4500;
}

/* Hero Section */
.hero {
    padding: clamp(50px, 8vw, 80px) clamp(8px, 1.5vw, 12px) clamp(30px, 5vw, 50px);
    background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; /* para espaçamento */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap; /* impede quebrar linha */
    padding: 0 16px;
}

.hero-text {
    flex: 0 0 60%;
    min-width: 300px;
}

.hero-text h1 {
    font-size: clamp(24px, 4.5vw, 45px);
    font-weight: 600;
    margin-bottom: clamp(10px, 1.5vw, 15px);
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero-text p {
    font-size: clamp(13px, 2.2vw, 22px);
    margin-bottom: clamp(15px, 2.5vw, 25px);
    opacity: 0.9;
}

.hero-image {
    flex: 0 0 40%;
    min-width: 240px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* Frases */
.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 0.7s infinite;
    color: #ffffff; /* pode mudar a cor */
    font-weight: bold;
}

#frase-final {
    font-weight: 600;
}


@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2.5vw, 20px);
    background: linear-gradient(45deg, #25D366, #20b958);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: clamp(13px, 2.2vw, 15px);
    box-shadow: 0 3px 8px #25d36666;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-wpp:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px #25d36699;
}

/* General Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2.5vw, 20px);
    background: linear-gradient(45deg, #ff4500, #ff6b00);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: clamp(13px, 2.2vw, 15px);
    box-shadow: 0 3px 8px rgba(255, 69, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
}

/* General Section */
.section {
    padding: clamp(30px, 6vw, 60px) clamp(8px, 2vw, 15px);
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: clamp(12px, 2vw, 20px);
}

.section h2 {
    font-size: clamp(20px, 4vw, 32px);
    color: #1a2b49;
    font-weight: 700;
    margin-bottom: clamp(10px, 1.2vw, 15px);
}

.section p {
    font-size: clamp(13px, 2.2vw, 16px);
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto clamp(15px, 2vw, 25px);
}

/* ================================ Background do painel ======================================== */
#solution {
    background: linear-gradient(45deg, #ff4500, #ff6b00);    
    padding: clamp(40px, 6vw, 60px) 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Título */
#solution h2 {
    font-size: clamp(24px, 4vw, 36px);
    color: #ffffff;
    margin-bottom: clamp(12px, 2vw, 20px);
    font-weight: 700;
}

/* Descrição */
#solution > p {
    font-size: clamp(14px, 2vw, 18px);
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

/* Cada feature */
.feature {
    max-width: clamp(240px, 28vw, 280px);
    background: #fff;
    padding: clamp(15px, 2.5vw, 20px);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature i {
    color: #ff4500;
    margin-bottom: clamp(10px, 1.2vw, 15px);
    font-size: clamp(24px, 4vw, 32px);
}

/* Responsividade (opcional, já bem coberto pelo clamp e flex-wrap) */
@media (max-width: 480px) {
    #solution {
        padding: 30px 15px;
    }
    
    .feature {
        max-width: 100%;
    }
}


/* Get Started */
#get-started .content {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 30px);
}

#get-started .text {
    flex: 1;
    min-width: clamp(240px, 35vw, 280px);
}

#get-started .text ul {
    list-style: none;
    padding: 0;
    margin-bottom: clamp(15px, 2vw, 25px);
}

#get-started .text ul li {
    font-size: clamp(13px, 2.2vw, 16px);
    color: #4a5568;
    margin-bottom: clamp(8px, 1.2vw, 12px);
    display: flex;
    align-items: center;
    gap: 8px;
}

#get-started .text ul li i {
    color: #25D366;
    font-size: clamp(14px, 2.2vw, 16px);
}

#get-started .image {
    flex: 1;
    min-width: clamp(240px, 35vw, 280px);
}

#get-started .image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#get-started .image img:hover {
    transform: scale(1.03);
}

.highlight-text {
    color: #ff4500;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
}

/* Pricing Section */
#pricing .pricing-box {
    padding: clamp(15px, 3vw, 30px);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: clamp(350px, 40vw, 500px);
    margin: 0 auto clamp(15px, 2vw, 25px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#pricing .btn {
    max-width: clamp(350px, 40vw, 500px);
    margin: 0 auto clamp(15px, 2vw, 25px);
}

#pricing .badge {
    background: linear-gradient(45deg, #ff4500, #ff6b00);
    color: #fff;
    padding: clamp(5px, 1.2vw, 7px) clamp(10px, 1.8vw, 14px);
    border-radius: 15px;
    font-size: clamp(11px, 1.5vw, 13px);
    font-weight: 600;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

#pricing .price {
    font-size: clamp(18px, 3.5vw, 28px);
    color: #ff4500;
    font-weight: 700;
    margin-bottom: clamp(10px, 1.2vw, 15px);
}

#pricing .price span {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
}

#pricing ul {
    list-style: none;
    padding: 0;
    margin-bottom: clamp(15px, 2vw, 25px);
}

#pricing ul li {
    font-size: clamp(12px, 2vw, 14px);
    margin-bottom: clamp(6px, 1.2vw, 10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

#pricing ul li i {
    color: #25D366;
    font-size: clamp(13px, 2vw, 16px);
}

#pricing .pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* mantém os boxes centralizados */
    gap: clamp(8px, 1.5vw, 15px); /* reduzi o espaçamento entre os boxes */
    margin: clamp(12px, 3vw, 20px) 0;
}

#pricing .pricing-box {
    flex: 1 1 clamp(260px, 30%, 400px); /* ajustei o max/min para caber melhor no centro */
    margin: 0; /* remove margens laterais duplicadas */
}

/* Centralizar a seção "Em breve" */
#pricing h3 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: clamp(20px, 2.5vw, 28px);
}

#pricing > ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column; /* cada item em linha */
    align-items: center;    /* centraliza horizontalmente */
    gap: 10px;              /* espaço entre os itens */
    margin: 0 auto 40px;    /* centraliza o bloco da lista */
}

#pricing > ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(14px, 2vw, 16px);
}

/* Destacar box mensal */
.pricing-box.destacado {
    background: linear-gradient(45deg, #ff4500, #ff6b00);
    color: #ffffff;
    transform: scale(1.05); /* leve destaque */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border: 2px solid #fff;
}

.pricing-box.destacado .badge {
    background: #fff;
    color: #20b958;
    font-weight: 700;
}

.pricing-box.destacado .price-destacado span {
    color: #fff;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
}

.pricing-box.destacado .price-destacado {
    font-size: clamp(18px, 3.5vw, 28px);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: clamp(10px, 1.2vw, 15px);
}

.pricing-box.destacado ul li i {
    color: #fff;
}

.pricing-box.destacado .btn-destaque {
    background: #fff;
    color: #20b958;
    font-weight: 700;
}

/* Demo Oyfood */
#demo-oyfood {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

#demo-oyfood .demo-content {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

#demo-oyfood .text {
    flex: 1;
    min-width: clamp(240px, 35vw, 280px);
}

#demo-oyfood .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: clamp(12px, 2vw, 20px);
}

#demo-oyfood .benefit-box {
    background: #fff;
    padding: clamp(12px, 2.5vw, 18px);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#demo-oyfood .benefit-box:hover {
    transform: translateY(-4px);
}

#demo-oyfood .benefit-box .icon {
    font-size: clamp(18px, 3.5vw, 24px);
    color: #ff4500;
}

#demo-oyfood .benefit-box strong {
    color: #ff4500;
    font-weight: 600;
    font-size: clamp(13px, 2vw, 14px);
}

#demo-oyfood .image {
    flex: 1;
    min-width: clamp(240px, 35vw, 280px);
}

#demo-oyfood .image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 12px;
}

#demo-oyfood .text,
#demo-oyfood .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#demo-oyfood .btn {
    max-width: clamp(350px, 40vw, 500px);
    margin: 0 auto clamp(15px, 2vw, 25px);
}

/* Como Funciona */
.steps {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 2vw, 20px);
    flex-wrap: wrap;
}

.step {
    background: #fff;
    padding: clamp(15px, 2.5vw, 20px);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: clamp(240px, 28vw, 280px);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.step i {
    color: #0063ff;
    font-size: clamp(18px, 3.5vw, 24px);
}

.step h3 {
    font-size: clamp(16px, 2.5vw, 20px);
}

.step p {
    font-size: clamp(12px, 1.8vw, 14px);
}

/* ============================ Depoimentos ================================ */
/* Seção Depoimentos */
#testimonials {
    background: #fff;
    padding: 60px 20px;
}

.testimonials-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Vídeo */
.testimonials-video {
    flex: 1 1 500px;
    max-width: 700px;
}

.testimonials-video iframe {
    width: 100%;
    height: clamp(280px, 35vw, 350px);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Conteúdo */
.testimonials-content {
    flex: 1 1 500px;
}

.testimonials-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2d3748;
    line-height: 1.3;
}

.testimonials-content h2 span {
    color: #ff4500;
}

/* Grid dos depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 12px;
    object-fit: cover;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.testimonial-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.4;
}

/* Responsivo */
@media (max-width: 900px) {
    .testimonials-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-content h2 {
        text-align: center;
    }
}


/* Footer */
footer {
    background: linear-gradient(90deg, #1a2b49 0%, #2d3748 100%);
    color: #fff;
    padding: clamp(25px, 4vw, 40px) clamp(8px, 2vw, 15px);
}

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

/* Logo */
.footer-content .logo {
    display: block; /* Isso garante que a logo será tratada como um bloco */
    margin-left: auto; /* Centraliza a logo */
    margin-right: auto; /* Centraliza a logo */
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin: clamp(12px, 2vw, 20px) 0;
}

.footer-links a {
    color: #a0aec0;
    font-size: clamp(11px, 1.8vw, 13px);
    margin: 0 clamp(5px, 1vw, 8px);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-description {
    color: #a0aec0;
    font-size: clamp(11px, 1.8vw, 13px);
}

/* Cookie Banner */
.cookie-banner {
    background: #1a2b49;
    padding: clamp(10px, 2vw, 15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 1.5vw, 15px);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
    font-size: clamp(11px, 1.8vw, 13px);
    margin: 0;
    color: #fff;
}

.cookie-banner a {
    color: #25D366;
    text-decoration: underline;
}

.cookie-banner button {
    background: linear-gradient(45deg, #25D366, #20b958);
    border-radius: 10px;
    padding: clamp(6px, 1.2vw, 8px) clamp(12px, 2vw, 15px);
    font-weight: 600;
    font-size: clamp(11px, 1.8vw, 13px);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cookie-banner button:hover {
    transform: scale(1.03);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.whatsapp-float img {
    width: 50px;
    height: 50px;
}


/* Responsive Design */
/* Responsive Design */

/* ================== Até 1024px ================== */
@media (max-width: 1024px) {
    .navbar {
        padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2.5vw, 18px);
    }

    .hero {
        padding: clamp(50px, 8vw, 70px) clamp(10px, 2vw, 15px);
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: clamp(15px, 3vw, 25px);
        margin-top: clamp(10px, 2vw, 15px);
    }

    .hero-text {
        margin-bottom: clamp(15px, 3vw, 25px);
    }

    .hero-text h1 {
        line-height: 1.3;
    }

    .hero-text p {
        line-height: 1.5;
    }

    #get-started .content {
        flex-direction: column;
        text-align: center;
        gap: clamp(15px, 3vw, 20px);
    }

    #get-started .image {
        margin-top: clamp(15px, 2vw, 25px);
    }

    #demo-oyfood .demo-content {
        flex-direction: column;
        text-align: center;
        gap: clamp(15px, 2.5vw, 25px);
    }

    .features, .steps, .testimonials-container {
        flex-direction: column;
        align-items: center;
        gap: clamp(15px, 2.5vw, 25px);
    }

    .feature, .step, .testimonial {
        max-width: 100%;
        width: clamp(240px, 80%, 360px);
        padding: clamp(12px, 2.5vw, 20px);
        margin-bottom: clamp(15px, 3vw, 20px);
    }
}

/* ================== Até 768px ================== */
@media (max-width: 768px) {
    .navbar {
        padding: clamp(6px, 1.2vw, 10px) clamp(8px, 1.5vw, 15px);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: clamp(50px, 8vw, 55px);
        left: 0;
        width: 100%;
        background: #fff;
        padding: clamp(15px, 3vw, 18px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
        max-height: 80vh;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: clamp(50px, 10vw, 70px) clamp(10px, 2vw, 15px) clamp(35px, 5vw, 45px);
    }

    .hero-text h1 {
        font-size: clamp(20px, 4vw, 32px);
        line-height: 1.3;
        margin-bottom: clamp(10px, 2vw, 15px);
    }

    .hero-text p {
        font-size: clamp(12px, 2vw, 16px);
        line-height: 1.5;
        margin-bottom: clamp(15px, 3vw, 20px);
    }

    .section {
        padding: clamp(25px, 5vw, 50px) clamp(6px, 1.5vw, 12px);
        margin: clamp(15px, 4vw, 25px) 0;
    }

    .section h2 {
        font-size: clamp(18px, 3.5vw, 28px);
        margin-bottom: clamp(12px, 3vw, 18px);
    }

    .section p {
        font-size: clamp(12px, 2vw, 16px);
        line-height: 1.5;
    }

    #pricing .pricing-box {
        padding: clamp(15px, 3vw, 25px);
    }

    #pricing .price {
        font-size: clamp(16px, 3vw, 24px);
    }

    #pricing .price span {
        font-size: clamp(24px, 4.5vw, 36px);
    }

    #pricing .badge {
        margin-top: clamp(25px, 4vw, 35px);
    }

    .feature, .step, .testimonial {
        padding: clamp(14px, 2.5vw, 16px);
        width: clamp(220px, 85%, 320px);
        margin-bottom: clamp(15px, 3vw, 20px);
    }

    .btn, .btn-wpp {
        padding: clamp(8px, 2vw, 10px) clamp(14px, 3vw, 18px);
        font-size: clamp(12px, 2vw, 14px);
        margin-top: clamp(10px, 2vw, 15px);
    }
}

/* ================== Até 480px ================== */
@media (max-width: 480px) {
    .navbar {
        padding: clamp(4px, 1vw, 6px) clamp(5px, 1.2vw, 10px);
    }

    .logo {
        height: clamp(30px, 6vw, 35px);
    }

    .nav-links {
        top: clamp(50px, 8vw, 55px);
        padding: clamp(12px, 2vw, 15px);
        overflow-y: auto;
        max-height: 80vh;
    }

    .nav-links li a {
        font-size: clamp(12px, 2.2vw, 14px);
        padding: clamp(8px, 1.5vw, 12px) 0;
    }

    .hero {
        padding: clamp(55px, 12vw, 75px) clamp(8px, 1.5vw, 12px) clamp(35px, 6vw, 45px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content-wrapper {
        gap: clamp(15px, 3vw, 20px);
        margin-top: clamp(10px, 2vw, 15px);
    }

    .hero-text h1 {
        font-size: clamp(20px, 4vw, 28px);
        line-height: 1.3;
        margin-bottom: clamp(10px, 2vw, 15px);
    }

    .hero-text p {
        font-size: clamp(12px, 2vw, 14px);
        line-height: 1.5;
        margin-bottom: clamp(15px, 3vw, 20px);
    }

    .btn, .btn-wpp {
        padding: clamp(8px, 2vw, 10px) clamp(14px, 3vw, 18px);
        font-size: clamp(12px, 2vw, 14px);
        margin-top: clamp(10px, 2vw, 15px);
    }

    .section {
        padding: clamp(25px, 5vw, 45px) clamp(6px, 1.5vw, 12px);
        margin: clamp(15px, 4vw, 25px) 0;
        border-radius: 10px;
    }

    .section h2 {
        font-size: clamp(18px, 3.5vw, 26px);
        margin-bottom: clamp(12px, 3vw, 18px);
    }

    .section p {
        font-size: clamp(12px, 2vw, 14px);
        line-height: 1.5;
    }

    .feature, .step, .testimonial {
        padding: clamp(14px, 2.5vw, 16px);
        width: clamp(220px, 85%, 320px);
        margin-bottom: clamp(15px, 3vw, 20px);
    }

    .footer-content .logo {
        width: clamp(75px, 14vw, 90px);
        margin-bottom: clamp(10px, 2vw, 15px);
    }

    .footer-links a {
        font-size: clamp(11px, 2vw, 13px);
        margin: 0 clamp(4px, 1vw, 6px);
    }

    .footer-description {
        font-size: clamp(11px, 1.8vw, 13px);
        line-height: 1.5;
        margin-top: clamp(10px, 2vw, 15px);
    }

    .whatsapp-float {
        width: clamp(40px, 7vw, 45px);
        height: clamp(40px, 7vw, 45px);
        bottom: clamp(12px, 2.5vw, 15px);
        right: clamp(12px, 2.5vw, 15px);
    }
}

/* ================= Seção Como Funciona ================= */
#how-it-works {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333;
    text-align: center; /* centraliza texto por padrão */
}

#how-it-works .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centraliza conteúdo horizontalmente */
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Lado esquerdo */
.how-left {
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza imagens e dots */
    text-align: center;
}

.how-left h2 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.how-left .dots {
    display: flex;
    gap: 8px;
    justify-content: center; /* centraliza os pontos */
    margin-bottom: 30px;
}

.how-left .dots span {
    width: 10px;
    height: 10px;
    background-color: #ff4500;
    border-radius: 50%;
    transition: transform 0.3s;
}

.how-left .dots span:hover {
    transform: scale(1.2);
}

.how-left img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin-top: 30px;
    border-radius: 12px;
}

/* Lado direito */
.how-right {
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center; /* centraliza cards horizontalmente */
}

/* Card de passo */
.step-how {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    border-radius: 12px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    min-height: 120px;
    max-width: 450px; /* limita largura do card */
}

.step-how:hover {
    transform: translateY(-5px);
}

.step-how-number {
    background: #ff4500;
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-how-text {
    flex: 1;
    text-align: left; /* mantém o texto do card alinhado à esquerda */
}

.step-how-text strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    color: #111;
}

.step-how-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* ================= Responsividade ================= */
@media (max-width: 1024px) {
    #how-it-works .container {
        gap: 40px;
    }

    .how-left h2 {
        font-size: 28px;
    }

    .how-left img {
        max-width: 100%;
    }

    .step-how-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    #how-it-works .container {
        flex-direction: column;
        align-items: center;
    }

    .how-left, .how-right {
        flex: 1 1 100%;
    }

    .step-how {
        flex-direction: row;
        gap: 15px;
        padding: 20px;
    }
}

/* ================= Seção WhatsApp ================= */
#whatsapp-notifications {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333;
    text-align: center;
}

#whatsapp-notifications .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Lado esquerdo */
#whatsapp-notifications .left {
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#whatsapp-notifications .left h2 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

#whatsapp-notifications .dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

#whatsapp-notifications .dots span {
    width: 10px;
    height: 10px;
    background-color: #ff4500;
    border-radius: 50%;
    transition: transform 0.3s;
}

#whatsapp-notifications .dots span:hover {
    transform: scale(1.2);
}

#whatsapp-notifications .phone-image img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin-top: 30px;
    border-radius: 20px;
}

/* Lado direito */
#whatsapp-notifications .right {
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Card de notificação */
#whatsapp-notifications .notifications li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    border-radius: 12px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    min-height: 100px;
    max-width: 450px;
}

#whatsapp-notifications .notifications li:hover {
    transform: translateY(-5px);
}

#whatsapp-notifications .notifications li .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #e6f4ea;
    color: #4caf50;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#whatsapp-notifications .notifications li .text {
    flex: 1;
    text-align: left;
}

#whatsapp-notifications .notifications li .text strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    color: #111;
}

#whatsapp-notifications .notifications li .text p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

#whatsapp-notifications .notifications ul.notification-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Container dos dois itens da esquerda */
#whatsapp-notifications .notifications ul.notification-list .left-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Item da direita */
#whatsapp-notifications .notifications ul.notification-list .right-item {
    margin-left: auto; /* empurra para o lado direito */
}


/* ================= Responsividade ================= */
@media (max-width: 1024px) {
    #whatsapp-notifications .container {
        gap: 40px;
    }

    #whatsapp-notifications .left h2 {
        font-size: 28px;
    }

    #whatsapp-notifications .phone-image img {
        max-width: 100%;
    }

    #whatsapp-notifications .notifications li .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    #whatsapp-notifications .container {
        flex-direction: column;
        align-items: center;
    }

    #whatsapp-notifications .left,
    #whatsapp-notifications .right {
        flex: 1 1 100%;
    }

    #whatsapp-notifications .notifications li {
        flex-direction: row;
        gap: 15px;
        padding: 20px;
        justify-content: center;
    }

    #whatsapp-notifications .notifications li .text {
        text-align: center;
    }
}

/* delivery-benefits */
#delivery-benefits {
    background: linear-gradient(45deg, #ff4500, #ff6b00);
    padding: 100px 35px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

#delivery-benefits .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    align-items: flex-start;
}

#delivery-benefits .left {
    flex: 1 1 400px;
    min-width: 300px;
}

#delivery-benefits .left h2 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 600;
}

#delivery-benefits .right {
    flex: 1 1 400px;
    min-width: 300px;
}

#delivery-benefits .right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#delivery-benefits .right li {
    display: flex;
    align-items: center;
    font-size: 20px;
}

#delivery-benefits .right li .number {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #ff4500;
    font-weight: 600;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: -10px;
    flex-shrink: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    #delivery-benefits .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #delivery-benefits .left,
    #delivery-benefits .right {
        flex: 1 1 100%;
    }

    #delivery-benefits .right li {
        justify-content: center;
    }
}

/* ================= Seção Funcionalidades ================= */
#features {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333;
    text-align: center;
}

#features .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

#features h2 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

#features .subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

#features .dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 50px;
}

#features .dots span {
    width: 10px;
    height: 10px;
    background-color: #ff4500;
    border-radius: 50%;
    transition: transform 0.3s;
}

#features .dots span:hover {
    transform: scale(1.2);
}

/* Grid de funcionalidades */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

/* Card de funcionalidade */
.feature-item {
    background-color: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    min-height: 200px;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* ================= Cores dos ícones ================= */
.icon.blue { background-color: #4a90e2; }
.icon.red { background-color: #e94e4e; }
.icon.green { background-color: #27ae60; }
.icon.purple { background-color: #9b59b6; }
.icon.orange { background-color: #f39c12; }
.icon.teal { background-color: #16a085; }
.icon.cyan { background-color: #3498db; }
.icon.pink { background-color: #e84393; }
.icon.brown { background-color: #8e6e53; }
.icon.violet { background-color: #8e44ad; }
.icon.gold { background-color: #f1c40f; }
.icon.hotpink { background-color: #ff6f91; }

/* ================= Responsividade ================= */
@media (max-width: 1024px) {
    #features h2 {
        font-size: 28px;
    }
    .features-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    #features {
        padding: 60px 15px;
    }

    .feature-item {
        text-align: center;
        align-items: center;
    }

    .feature-item .icon {
        margin: 0 auto 15px auto;
    }
}

