@charset "UTF-8";

:root {
    --orange: #FF6B3D;
    --orange-light: #FF8C42;
    --orange-dark: #e55a2b;
    --dark: #1a2a3a;
    --gray: #6c7a89;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --green: #28a745;
    --green-dark: #1e7e34;
    --blue: #17a2b8;
    --blue-dark: #117a8b;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--light-gray);
    color: var(--dark);
    overflow-x: hidden;
}

/* ========== HEADER ========== */
.header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: white;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.logo i {
    font-size: 1.6rem;
}

.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    transition: transform 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.nav {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    border-radius: 50px;
    z-index: -1;
}

.nav a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav a:hover {
    transform: translateY(-2px);
    letter-spacing: 0.5px;
}

/* Botões do menu */
.btn-anuncie {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-anuncie:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-destaque {
    background: white;
    color: var(--orange) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-destaque:hover {
    background: #fff5f2;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--orange-dark) !important;
}

.btn-destaque:hover::before {
    background: rgba(255, 107, 61, 0.05);
}

.btn-entrar {
    border: 2px solid white;
}

.btn-entrar:hover {
    background: white;
    color: var(--orange) !important;
    border-color: white;
}

.btn-entrar i {
    transition: transform 0.3s;
}

.btn-entrar:hover i {
    transform: translateX(3px);
}

/* ========== HERO SECTION ========== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 80px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 61, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-peca {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B3D 0%, #FF8C42 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 61, 0.3);
    border: none;
    cursor: pointer;
}

.btn-peca i {
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.btn-peca:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 61, 0.4);
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B3D 100%);
}

.btn-peca:hover i {
    transform: translateX(5px);
}

.btn-peca:active {
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(255, 107, 61, 0.3);
}

.btn-cadastro-estabelecimento {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-cadastro-estabelecimento:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 61, 0.2);
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ========== BENEFÍCIOS PARA CLIENTES ========== */
.benefits {
    padding: 60px 80px;
    text-align: center;
}

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.benefit-card:hover i {
    transform: scale(1.1);
}

.benefit-card h3 {
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray);
}

/* ========== SEÇÃO PARA ESTABELECIMENTOS ========== */
.para-estabelecimentos {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: white;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

.para-estabelecimentos::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 61, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.para-estabelecimentos::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.estabelecimentos-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.estabelecimentos-header {
    text-align: center;
    margin-bottom: 50px;
}

.estabelecimentos-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.gratuito-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.95;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.gratuito-badge i {
    margin-right: 8px;
}

.beneficios-grid-estabelecimento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.beneficio-card-estabelecimento {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.beneficio-card-estabelecimento:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.beneficio-card-estabelecimento i {
    font-size: 45px;
    color: var(--orange-light);
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.beneficio-card-estabelecimento:hover i {
    transform: scale(1.1);
}

.beneficio-card-estabelecimento h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.beneficio-card-estabelecimento p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.call-to-action {
    text-align: center;
    margin-top: 30px;
}

.btn-cadastrar-gratis {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.btn-cadastrar-gratis:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
}

.mais-clientes-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
    border-left: 4px solid var(--orange);
    transition: all 0.3s;
}

.mais-clientes-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.mais-clientes-box i {
    font-size: 28px;
    color: var(--orange);
    margin-right: 10px;
}

.mais-clientes-box span {
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 20px;
}

.footer p {
    opacity: 0.7;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-icon a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.15);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.social-icon.whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* ========== BOTÃO FLUTUANTE DO WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-button i {
    font-size: 35px;
    color: white;
}

/* Tooltip do WhatsApp */
.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #1a2a3a;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-left: 3px solid #25D366;
    text-decoration: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 8px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Animação de pulso no botão */
.whatsapp-float.active .whatsapp-button {
    animation: pulse-whatsapp 1.5s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .benefits,
    .para-estabelecimentos {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
        padding: 20px;
        border-radius: 20px;
        margin-top: 10px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-peca,
    .btn-cadastro-estabelecimento {
        width: 100%;
        justify-content: center;
    }

    .beneficios-grid-estabelecimento {
        grid-template-columns: 1fr;
    }

    .estabelecimentos-header h2 {
        font-size: 1.6rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
    }

    .whatsapp-button i {
        font-size: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .benefits h2,
    .estabelecimentos-header h2 {
        font-size: 1.4rem;
    }

    .btn-cadastrar-gratis {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .btn-peca {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ========== REMOVER SUBLINHADO DE TODOS OS LINKS ========== */
a,
a:link,
a:visited,
a:hover,
a:active,
.nav a,
.footer a,
.social-icon a,
.whatsapp-float a,
.btn-peca,
.btn-cadastro-estabelecimento,
.btn-cadastrar-gratis,
.btn-anuncie,
.btn-destaque,
.btn-entrar {
    text-decoration: none !important;
}

/* ========== AJUSTES GERAIS ========== */
img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}