* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --primary-dark: #1e40af;
    --accent-orange: #f97316;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-text: #f1f5f9;
    --gray-text: #94a3b8;
    --green-success: #10b981;
    --red-danger: #ef4444;
    --border-gray: #334155;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--darker-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000217;
    /* background: rgba(15, 23, 42, 0.95); */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-icon {
    font-size: 1.8rem;
}

.btn-nav {
    /* background: var(--primary-blue); */
    background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); 
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-nav:hover {
    background: #36fc67;
    transform: translateY(-2px);
    color: black;
    /* opacity: 0.7; */
    cursor: pointer;
    
}

.nav-cta .btn-nav {
    background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); 
    color: white;
    font-weight: bold;
    font-size: 20px; /* tamanho padrão para desktop */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.nav-cta .btn-nav:hover {
   background: #36fc67;
  /* box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);  */
  color: black;
  cursor: pointer;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .nav-cta .btn-nav {
        font-size: 18px;
        padding: 10px 22px;
        background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); 
    color: white;
    }

    .nav-cta .btn-nav:hover {
   background: #36fc67;
  /* box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);  */
  color: black;
  cursor: pointer;
}

}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .nav-cta .btn-nav {
        font-size: 16px;
        padding: 8px 20px;
        background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); 
    color: white;
    }

    .nav-cta .btn-nav:hover {
   background: #36fc67;
  /* box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);  */
  color: black;
  cursor: pointer;
}

}

/* Responsividade para celulares muito pequenos */
@media (max-width: 480px) {
    .nav-cta .btn-nav {
        font-size: 14px;
        padding: 6px 15px;
        background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); 
    color: white;
    }

    
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    padding: 140px 20px 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(37,99,235,0.1)"/><circle cx="80" cy="80" r="20" fill="rgba(37,99,235,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 10;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-orange);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.check-icon {
    background: var(--green-success);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.hero-cta {
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    /* background: var(--primary-blue); */
    background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); 
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    /* background: var(--primary-dark); */
    background: #36fc67;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.btn-extra-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.3rem;
}

.btn-mega {
    padding: 1.75rem 4rem;
    font-size: 1.4rem;
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.cta-note {
    margin-top: 1rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.proof-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.pain-section {
    background: var(--dark-bg);
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-danger);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-icon.red {
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.pain-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.pain-description {
    color: var(--gray-text);
    line-height: 1.7;
}

.pain-cta {
    text-align: center;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--red-danger);
    border-radius: 16px;
    padding: 2.5rem;
}

.pain-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.transformation-section {
    background: var(--darker-bg);
    padding: 100px 20px;
}

.transformation-grid {
    display: grid;
    gap: 3rem;
}

.transformation-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 2.5rem;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.before,
.after {
    text-align: center;
}

.ba-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.red-label {
    background: rgba(239, 68, 68, 0.2);
    color: var(--red-danger);
    border: 1px solid var(--red-danger);
}

.green-label {
    background: rgba(16, 185, 129, 0.2);
    color: var(--green-success);
    border: 1px solid var(--green-success);
}

.ba-content {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.ba-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ba-content h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.ba-list {
    list-style: none;
    text-align: left;
}

.ba-list li {
    padding: 0.5rem 0;
    color: var(--gray-text);
}

.arrow-transform {
    font-size: 3rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.process-section {
    background: var(--dark-bg);
    padding: 100px 20px;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 64px;
    width: 2px;
    height: calc(100% + 16px);
    background: var(--border-gray);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.step-content {
    background: rgba(51, 65, 85, 0.3);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 2rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-time {
    color: var(--primary-blue);
    font-weight: 600;
}

.process-cta {
    text-align: center;
}

.proof-section {
    background: var(--darker-bg);
    padding: 100px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 700;
    color: white;
}

.testimonial-business {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-result {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: var(--green-success);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.result-label {
    font-weight: 600;
}

.result-value {
    font-weight: 700;
}

.demo-section {
    max-width: 800px;
    margin: 0 auto;
}

.demo-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.demo-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.demo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.demo-preview {
    margin-bottom: 2rem;
}

.demo-screen {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.demo-browser {
    background: #e5e7eb;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #9ca3af;
}

.browser-url {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #6b7280;
    flex: 1;
    text-align: left;
}

.demo-content {
    background: #f9fafb;
    padding: 2rem;
}

.demo-hero {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.demo-line {
    background: rgba(255, 255, 255, 0.8);
    height: 12px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.demo-line.long {
    width: 80%;
}

.demo-line.medium {
    width: 60%;
}

.demo-button {
    background: white;
    width: 120px;
    height: 40px;
    border-radius: 8px;
    margin-top: 1rem;
}

.demo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.demo-card-item {
    background: white;
    border-radius: 8px;
    height: 80px;
    border: 1px solid #e5e7eb;
}

.demo-features {
    list-style: none;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 15px;
}

.demo-features li {
    color: yellow;
    /* color: var(--gray-text); */
}

.offer-section {
    background: var(--dark-bg);
    padding: 100px 20px;
}

.offer-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-orange);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent-orange);
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.offer-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.offer-grid {
    margin-bottom: 3rem;
}

.offer-card {
    background: rgba(51, 65, 85, 0.3);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.offer-card.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
}

.offer-card-header {
    margin-bottom: 2rem;
}

.offer-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-before {
    font-size: 1.2rem;
    color: var(--gray-text);
    text-decoration: line-through;
}

.price-now {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
}

.price-condition {
    font-size: 1rem;
    color: var(--gray-text);
}

.offer-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.offer-includes li {
    padding: 0.75rem 0;
    color: var(--light-text);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-gray);
}

.offer-includes li:last-child {
    border-bottom: none;
}

.offer-bonus {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--green-success);
    border-radius: 12px;
    padding: 1.5rem;
}

.bonus-badge {
    display: inline-block;
    background: var(--green-success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.offer-bonus p {
    color: var(--green-success);
    font-weight: 600;
}

.offer-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--red-danger);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.urgency-icon {
    font-size: 2.5rem;
}

.urgency-text strong {
    display: block;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.25rem;
}

.urgency-text p {
    color: var(--gray-text);
}

.offer-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--green-success);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.guarantee-icon {
    font-size: 2.5rem;
}

.guarantee-text strong {
    display: block;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    color: var(--gray-text);
}

.offer-cta {
    margin-top: 2rem;
}

.faq-section {
    background: var(--darker-bg);
    padding: 100px 20px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.faq-icon {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--gray-text);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.final-cta-section {
    background: var(--dark-bg);
    padding: 100px 20px;
}

.final-cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    border: 2px solid var(--primary-blue);
    border-radius: 24px;
    padding: 4rem 2rem;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-text {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.choice-card {
    background: var(--dark-bg);
    border: 2px solid;
    border-radius: 16px;
    padding: 2rem;
}

.choice-card.bad {
    border-color: var(--red-danger);
}

.choice-card.good {
    border-color: var(--green-success);
}

.choice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.choice-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.choice-card ul {
    list-style: none;
    text-align: left;
}

.choice-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-text);
}

.final-urgency {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--red-danger);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.urgency-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.urgency-subtitle {
    color: var(--gray-text);
}

.final-cta-button {
    margin-bottom: 2rem;
}

.cta-final-note {
    margin-top: 1rem;
    color: var(--gray-text);
}

.final-contact-info {
    color: var(--gray-text);
}

.final-contact-info strong {
    color: var(--primary-blue);
}

.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-gray);
    padding: 3rem 20px 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--gray-text);
    margin-top: 1rem;
}

.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
}

/* 
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); */

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .social-proof {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .before-after {
        grid-template-columns: 1fr;
    }

    .arrow-transform {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

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

    .btn-large,
    .btn-extra-large,
    .btn-mega {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .demo-cards {
        grid-template-columns: 1fr;
    }

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

    .offer-urgency,
    .offer-guarantee {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

.plans-section {
    padding: 80px 0;
    background-color:rgba(16, 185, 129, 0.1);
    /* #f9f9f9; */
    color: black;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.plan-card.highlight {
    border: 5px solid #ffd700;
}

/* Degradê no background */
.plan-card.highlight {
    border: 5px solid #ffd700;
    background: linear-gradient(135deg, #fcf1bc 0%, rgb(245, 241, 241) 100%);
}

.plan-card .badge {
    background: #ffd700;
    color: #000;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 14px;
    position: absolute;
    top: -10px;
    right: 20px;
}

.plan-price {
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-card ul li {
    margin: 10px 0;

}

.plan-card .btn-primary {
    display: inline-block;
    margin-top: 15px;
}

.container{
    color:black;
}

/* badge */
.plan-card {
    position: relative; /* necessário para que o badge fique dentro do card */
}

.plan-card .badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #000;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 14px;
    z-index: 10; /* garante que fique acima de tudo */
}

span{
    color: white;;
}

span:hover{
    color: black;;
}
.btn-extra-large {
    display: inline-flex;       /* mantém tudo na mesma linha */
    align-items: center;        /* alinha verticalmente */
    justify-content: center;    /* centraliza horizontalmente */
    gap: 0.5rem;                /* espaçamento entre texto e seta */
    padding: 1rem 2rem;
    background-color: #00C851;  /* verde */
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn-extra-large:hover {
    background-color: #007E33;  /* escurece no hover */
}

.btn-arrow {
    font-weight: bold;
}

span.text{
    color: #ffd700;
    font-weight: bold;
    font-size:23px;
}

span.text {
    color: #ffd700;
    font-weight: bold;
    font-size: 23px; /* tamanho padrão para desktop */
}

/* Ajuste para tablets */
@media (max-width: 1024px) {
    span.text {
        font-size: 20px;
    }
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    span.text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    span.text {
        font-size: 16px;
    }
}

/* PORTFÓLIO */

.portfolio-section{
    padding:80px 20px;
    background:#f8f9fb;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.portfolio-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s;
}

.portfolio-card:hover{
    transform:translateY(-8px);
}

.portfolio-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.portfolio-info{
    padding:20px;
}

.portfolio-info h3{
    margin-bottom:10px;
}

.portfolio-info p{
    margin-bottom:15px;
    color:#555;
}

/* PORTFÓLIO */

.portfolio-section{
    padding:80px 20px;
    background:#2563eb;
    --primary-blue: #2563eb;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.portfolio-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:all .3s ease;
}

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

.portfolio-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.portfolio-info{
    padding:20px;
}

.portfolio-info h3{
    margin-bottom:10px;
}

.portfolio-info p{
    color:#555;
    margin-bottom:15px;
}

/* Responsividade (TABLET) */
@media (max-width: 1024px){

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

}

/* Responsividade (CELULAR) */

@media (max-width: 768px){

.portfolio-section{
    padding:60px 15px;
}

.portfolio-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.portfolio-card img{
    height:180px;
}

}

.portfolio-card {
    background: #e5ecb8;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 300px;
    text-align: center;
    margin: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.portfolio-card img {
    width: 100%; /* a imagem ocupa todo o card */
    height: auto;
    display: block;
}

.portfolio-info {
    padding: 1rem;
}

.portfolio-info h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.btn-secondary {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #45a049;
}

.annual-plans{
margin-top:80px;
}

.plan-note{
font-size:14px;
opacity:0.8;
margin-bottom:15px;
}

.plan-price span{
font-size:16px;
opacity:0.7;
}

.annual-note{
text-align:center;
margin-top:30px;
font-size:14px;
opacity:0.8;
}

/* INTRO PLANOS ANUAIS */

.annual-intro{
text-align:center;
max-width:700px;
margin:80px auto 40px auto;
padding:25px 30px;
background:linear-gradient(135deg,#f8f9ff,#eef2ff);
border-radius:12px;
}

.annual-intro h2{
font-size:32px;
font-weight:700;
margin-bottom:10px;
color:#111;
}

.annual-intro p{
font-size:18px;
color:#666;
line-height:1.5;
}
