/* Landing Minimal - Mobile First */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* HEADER */
.minimal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.minimal-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.minimal-header .logo {
    height: 36px;
}

.header-cta {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
}

.header-cta:hover {
    transform: scale(1.05);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* HERO */
.hero-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-minimal h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.hero-minimal h1 span {
    color: #3b82f6;
}

.hero-minimal p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* SECTIONS */
.section-minimal {
    padding: 80px 24px;
}

.section-minimal.bg-light {
    background: #f8fafc;
}

.section-minimal h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

.section-minimal p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* BADGE */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* SOLUTION GRID */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.solution-item {
    background: white;
    padding: 24px 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.solution-item:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
}

.solution-item i {
    font-size: 2rem;
    color: #3b82f6;
}

.solution-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

/* PRICE BOX */
.price-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 32px auto;
    max-width: 300px;
}

.price {
    display: block;
    font-size: 3rem;
    font-weight: 900;
}

.price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 8px;
}

/* PRICE DROP ANIMATION - Nova versão */
.price-box-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.price-section .price-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 320px;
    margin: 32px auto 0;
    position: relative;
    overflow: hidden;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.price-display .currency {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.9;
}

.price-display .price-value {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    transition: all 0.3s;
}

.price-section .price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 12px;
}

/* Números que caem */
.falling-numbers {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
}

.fall-digit {
    font-size: 2.5rem;
    font-weight: 900;
    color: #22c55e;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Animações dos dígitos */
.fall-digit.falling {
    animation: digitFall 0.8s ease forwards;
}

#digit7.falling {
    animation-delay: 0s;
}

#digit1.falling {
    animation-delay: 0.15s;
}

#digit0.falling {
    animation-delay: 0.3s;
}

@keyframes digitFall {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }

    60% {
        transform: translateY(100px) rotate(10deg);
        opacity: 1;
    }

    100% {
        transform: translateY(120px) rotate(15deg);
        opacity: 0;
    }
}

.falling-numbers.active {
    opacity: 1;
}

/* Efeito de flash quando o preço muda */
.price-value.flash {
    animation: priceFlash 0.5s ease;
}

@keyframes priceFlash {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        color: #22c55e;
    }

    100% {
        transform: scale(1);
    }
}

/* Info promocional */
.promo-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.promo-info.hidden {
    display: none;
}

.promo-info.show {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.discount-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-badge i {
    font-size: 0.9rem;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
}

.urgency-timer i {
    color: #f97316;
}

.countdown-timer {
    font-weight: 700;
    font-size: 1.1rem;
    color: #f97316;
    font-family: 'Courier New', monospace;
    background: #fef3c7;
    padding: 4px 12px;
    border-radius: 6px;
}

/* Botão promocional */
.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    margin-bottom: 12px;
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.btn-promo.hidden {
    display: none;
}

.btn-promo.show {
    display: inline-flex;
    animation: ctaAppear 0.5s ease;
}

@keyframes ctaAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#normalCta.hidden {
    display: none;
}

.btn-secondary {
    display: inline-block;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 24px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
}

/* CTA FINAL */
.cta-final {
    padding: 100px 24px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.cta-final h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-final p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* OUTROS SERVIÇOS */
.small-text {
    font-size: 0.95rem !important;
    color: #94a3b8 !important;
    margin-bottom: 20px !important;
}

.services-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.services-mini a {
    padding: 10px 18px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.services-mini a:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

/* FOOTER */
.footer-minimal {
    padding: 40px 24px;
    text-align: center;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.footer-areas {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* BADGE HERO */
.badge-hero {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 32px;
}

/* AGENCY INTRO */
.agency-intro {
    font-size: 1rem !important;
    color: #475569 !important;
    font-weight: 500;
    margin-bottom: 24px !important;
    line-height: 1.6;
}

/* OUTROS SERVIÇOS - Cards Estilizados */

/* AVALIAÇÕES GOOGLE */
.reviews-section {
    padding: 80px 24px;
    background: white;
}

.reviews-header {
    margin-bottom: 40px;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.google-rating>i {
    font-size: 1.8rem;
    color: #4285f4;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.reviews-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.review-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.review-stars {
    margin-bottom: 16px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
}

.author-source {
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-source i {
    color: #4285f4;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid #4285f4;
    color: #4285f4;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-reviews:hover {
    background: #4285f4;
    color: white;
}

.section-outros {
    padding: 80px 24px;
    background: #f8fafc;
}

.outros-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
}

.outros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .outros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .outros-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.outro-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}

.outro-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}

.outro-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s;
}

.outro-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.outro-icon.icon-orange {
    background: rgba(249, 115, 22, 0.1);
}

.outro-icon.icon-orange i {
    color: #f97316;
}

.outro-icon.icon-green {
    background: rgba(16, 185, 129, 0.1);
}

.outro-icon.icon-green i {
    color: #10b981;
}

.outro-icon.icon-purple {
    background: rgba(139, 92, 246, 0.1);
}

.outro-icon.icon-purple i {
    color: #8b5cf6;
}

.outro-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
    transition: all 0.3s;
}

/* Conteúdo expansivo */
.card-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: left;
}

.outro-card:hover .card-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 16px;
}

.outro-card:hover h3 {
    margin-bottom: 0;
}

.card-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.card-content ul li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-content ul li i {
    color: #3b82f6;
    font-size: 0.75rem;
}

.outro-btn {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.outro-btn:hover {
    background: #2563eb;
}

/* RESPONSIVE - Desktop */
@media (min-width: 768px) {
    .hero-minimal h1 {
        font-size: 3.5rem;
    }

    .hero-minimal p {
        font-size: 1.4rem;
    }

    .section-minimal h2 {
        font-size: 2.2rem;
    }

    .solution-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 700px;
    }
}