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

:root {
    --primary-color: #FF6B00; /* Laranja vibrante */
    --dark-color: #2c3e50;    /* Cinza escuro/azulado */
    --light-color: #ecf0f1;   /* Cinza claro */
    --white-color: #ffffff;
    --success-color: #2ecc71; /* Verde para o PIX */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
    overflow: visible;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        overflow: hidden;
    }
}

header {
    background: var(--white-color);
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    flex-direction: row;
    gap: 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        display: none !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    nav.active {
        display: flex !important;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.text-primary {
    color: var(--primary-color);
}

nav a {
    color: var(--dark-color);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    nav a {
        margin-left: 0;
        padding: 0.5rem 0;
    }
}

.section {
    padding: 4rem 0;
}

.section-light {
    background-color: var(--light-color);
}

#features {
    background-color: #fff6f0;
    position: relative;
    overflow: hidden;
}

#pricing {
    background-color: #fff6f0;
    position: relative;
    overflow: hidden;
}

.hero {
    text-align: center;
    padding: 6rem 0;
}

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-title .desktop-line {
        display: block;
    }

    .hero-title .mobile-line {
        display: none;
    }

    @media (max-width: 768px) {
        .hero-title .desktop-line {
            display: none;
        }
        .hero-title .mobile-line {
            display: block;
            margin-bottom: 0.3rem;
        }
        .hero-title .mobile-line:last-child {
            margin-bottom: 0;
        }
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0.5rem auto;
    }

    @media (max-width: 768px) {
        .hero-title .title-line {
            display: inline;
        }
        .hero-title {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }
        .hero-title .title-line:first-child {
            display: flex;
            flex-direction: column;
        }
        .hero-title .title-line:first-child:after {
            content: "sem mensalidade";
            display: block;
            margin-top: 0.3rem;
        }
        .hero-title .title-line:first-child:before {
            content: "Seu cardápio digital";
        }
        .hero-title .title-line:first-child span {
            display: none;
        }
    }.hero a.btn {
    margin-top: 2rem;
}

.pain-points {
    margin-top: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pain-points p {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--dark-color);
    opacity: 0.9;
}

.pain-points .main-question {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pain-points .main-question {
        white-space: normal;
        font-size: 1.2rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .pain-points .main-question {
        font-size: 1.1rem;
    }
}

.hero strong {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
}





.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.how-it-works {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.solution-points {
    max-width: 500px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}

.solution-points p {
    font-size: 1.2rem;
    margin: 0.7rem 0;
    color: var(--dark-color);
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#how-it-works .section-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
    justify-items: center;
}

@media (min-width: 1200px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    background: var(--white-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: var(--light-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.features-grid-center {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.features-grid-center .feature {
    max-width: 350px;
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(250px, 300px));
        justify-content: center;
    }
    .features-grid > div:nth-last-child(-n+3) {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .features-grid-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .features-grid-center {
        margin-top: 1.5rem;
    }
    
    .feature {
        width: 100%;
        max-width: calc(100vw - 2rem);
        margin: 0;
        padding: 1.5rem;
        box-sizing: border-box;
    }
}

.feature {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing {
    text-align: center;
}

.price-box {
    background: var(--white-color);
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 2rem auto;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-description {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-description-sub {
    font-size: 1.25rem;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 2px;
}

.region-info {
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-top: 0;
    opacity: 0.85;
}

.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.price-box .price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 1.5rem 0;
    animation: pulse-primary 2s infinite;
}

.price-box .installments {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.payment-divider {
    font-size: 1.1rem;
    color: #666;
    margin: 1.5rem 0;
    position: relative;
}

.pix-discount {
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.pix-discount:hover {
    transform: scale(1.05);
}

.discount-tag {
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

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

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

.cta {
    text-align: center;
    background: var(--dark-color);
    color: var(--white-color);
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white-color);
}

.ideal-for {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.ideal-for p:first-child {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.business-types {
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ideal-for {
        padding: 0 1rem;
        margin: 1.5rem auto;
    }
    
    .ideal-for p:first-child {
        font-size: 1.2rem;
    }
    
    .business-types {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Botão Flutuante do WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.floating-whatsapp {
    animation: pulse 2s infinite;
}

.btn-primary {
    animation: pulse-primary 2s infinite;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background: var(--light-color);
    border-top: 1px solid #ccc;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 768px) {
        .features-grid,
        .features-grid-center {
            display: block;
        }
        
        .feature {
            width: 100%;
            max-width: 350px;
            margin: 1rem auto;
        }
    }
}

@media (max-width: 992px) {
    html {
        font-size: 95%;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-box {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 90%;
    }

    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    nav a {
        margin: 0;
        padding: 0.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.4;
    }

    .hero-title .desktop-line {
        display: block;
    }

    .pain-points {
        margin-top: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        text-align: center;
        max-width: 100%;
    }

    .price {
        font-size: 3rem;
    }

    .price-description,
    .price-description-sub {
        font-size: 1.1rem;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 85%;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .pain-points p {
        font-size: 1rem;
    }

    .solution-points {
        max-width: 100%;
        padding: 0;
    }

    .solution-points p {
        font-size: 1rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .price-box {
        padding: 2rem 1rem;
    }

    .installments,
    .pix-discount {
        font-size: 1rem;
    }

    .btn-whatsapp {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    .btn-primary {
        margin-bottom: 1rem;
    }
}

/* Fix para textos longos em dispositivos móveis */
@media (max-width: 360px) {
    .solution-points p,
    .pain-points p {
        white-space: normal;
        overflow: visible;
    }

    nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Estilos para links de preço */
a.price {
    text-decoration: none;
    color: var(--dark-color);
    cursor: pointer;
    display: block;
    transition: color 0.3s ease;
}

a.price:hover {
    color: var(--primary-color);
}

a.pix-discount {
    text-decoration: none;
    color: var(--white-color);
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
}

a.pix-discount:hover {
    transform: scale(1.05);
}

/* Estilo para link Gerbis Soluções Web */
footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff8c00;
}
