/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-weight: 400;
}

/* Typography System */
.text-xs { font-size: 0.75rem; }    /* 12px */
.text-sm { font-size: 0.875rem; }   /* 14px */
.text-base { font-size: 1rem; }     /* 16px */
.text-lg { font-size: 1.125rem; }   /* 18px */
.text-xl { font-size: 1.25rem; }    /* 20px */
.text-2xl { font-size: 1.5rem; }    /* 24px */
.text-3xl { font-size: 1.875rem; }  /* 30px */
.text-4xl { font-size: 2.25rem; }   /* 36px */
.text-5xl { font-size: 3rem; }      /* 48px */

/* Font Weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1 {
    font-size: 3rem; /* 48px - text-5xl */
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.25rem; /* 36px - text-4xl */
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem; /* 24px - text-2xl */
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: #4b5563;
}

/* Buttons */
.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #6952C7;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    padding: 12px 24px;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* New Hero Buttons */
.btn-primary-green {
    background-color: #2563eb;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 1rem; /* text-base */
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
}

.btn-primary-green:hover {
    background-color: #6952C7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline-blue {
    background-color: transparent;
    color: #2563eb;
    padding: 14px 28px;
    border: 2px solid #2563eb;
    border-radius: 25px;
    font-size: 1rem; /* text-base */
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-blue:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-img {
    height: 80px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #1f2937;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2563eb;
}

.btn-header-cta {
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-header-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* New Hero Section */
.hero-new {
    background: linear-gradient(135deg, #eff6ff 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    color: #4b5563;
    font-size: 3rem; /* text-5xl */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-title .subtitle-text {
    font-size: 2.25rem; /* Menor que o texto principal */
    font-weight: 600; /* Menos peso também */
    display: block;
}

.gradient-text {
    background: linear-gradient(180deg, #5B8DEE 0%, #A46AE6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem; /* text-2xl */
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem; /* text-lg */
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Principais Recursos Section */
.principais-recursos {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.recurso-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.recurso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.recurso-icon {
    font-size: 2.5rem; /* text-4xl */
    margin-bottom: 1.5rem;
    color: #2563eb;
    display: block;
}

.recurso-icon i {
    display: block;
}

.recurso-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.375rem; /* text-xl+ */
}

.recurso-card p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem; /* text-base */
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 0;
}

/* WhatsApp Chat Example */
.chat-example {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.whatsapp-mockup {
    width: 360px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.whatsapp-header {
    background-color: #11B981;
    color: white;
    padding: 16px 20px;
    text-align: center;
}

.whatsapp-title {
    font-size: 1rem;
    font-weight: 600;
}

.whatsapp-messages {
    background-color: #f0f2f5;
    padding: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.whatsapp-message.received {
    background-color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.whatsapp-message.sent {
    background-color: #dcf8c6;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.whatsapp-message p {
    margin: 0 0 4px 0;
    color: #1f2937;
    line-height: 1.4;
}

.whatsapp-message p:last-of-type {
    margin-bottom: 8px;
}

.whatsapp-time {
    font-size: 0.75rem;
    color: #6b7280;
    display: block;
    text-align: right;
    margin-top: 4px;
}

/* Section Styles */
.section-subtitle {
    font-size: 1.125rem; /* text-lg */
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

section {
    padding: 80px 0;
}



/* How It Works Section */
.how-it-works {
    background-color: #ffffff;
    overflow-x: auto;
}

.journey-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 0;
    min-width: max-content;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.journey-step:hover {
    border-color: #2563eb;
    background-color: #eff6ff;
    transform: translateY(-5px);
}

.journey-icon {
    font-size: 1.875rem; /* text-3xl */
    margin-bottom: 0.5rem;
    display: block;
    color: #2563eb;
}

.journey-icon i {
    display: block;
}

.journey-step h4 {
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
}

.journey-step span {
    font-size: 0.75rem; /* text-xs */
    color: #6b7280;
    font-weight: 400;
}

.journey-arrow {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    flex-shrink: 0;
}







/* Implementation Section */
.implementation {
    background-color: #ffffff;
}

.implementation-steps {
    margin-top: 3rem;
}

.impl-step {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

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

.impl-step-number {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.impl-step h3 {
    margin: 0;
    color: #1f2937;
}

.impl-step p {
    margin: 0;
    color: #6b7280;
}

.support-note {
    background-color: #eff6ff;
    border: 2px solid #dbeafe;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.support-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-note p {
    margin: 0;
    color: #2563eb;
    font-weight: 500;
}

/* Differentials Section */
.differentials {
    background-color: #f9fafb;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.award-card {
    background-color: #ffffff;
    padding: 2rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.award-card.highlight {
    background: linear-gradient(135deg, #2563eb 0%, #6952C7 100%);
    color: white;
    border-color: #2563eb;
}

.award-medal {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.award-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.award-card.highlight .award-title {
    color: white;
}

.award-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.award-card.highlight .award-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.award-count {
    background-color: #eff6ff;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.award-card.highlight .award-count {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Results Section */
.results {
    background-color: #ffffff;
}

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

.result-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
    display: block;
}

.result-item p {
    margin: 0;
    color: #4b5563;
    font-weight: 500;
}

.roi-note {
    background-color: #eff6ff;
    border: 2px solid #dbeafe;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.roi-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.roi-note p {
    margin: 0;
    color: #2563eb;
    font-weight: 500;
}

/* Target Section */
.target {
    background-color: #f9fafb;
}

.target-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.ideal-profile h3,
.specialties-visual h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.profile-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.metric-item:hover {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.metric-icon {
    font-size: 1.5rem;
}

.metric-text {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.specialty-chip {
    background-color: #ffffff;
    color: #2563eb;
    padding: 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid #dbeafe;
    transition: all 0.3s ease;
}

.specialty-chip:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Next Steps Section */
.next-steps {
    background-color: #ffffff;
}

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

.step-cta {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.step-cta-number {
    background-color: #2563eb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem auto;
}

.step-cta h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-cta p {
    color: #6b7280;
    margin: 0;
}

.contact-box {
    background: linear-gradient(135deg, #2563eb 0%, #6952C7 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-box h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.contact-info a {
    color: #fbbf24;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-box .btn-primary {
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 1.1rem;
    padding: 15px 30px;
    margin-top: 1rem;
}

.contact-box .btn-primary:hover {
    background-color: #dbeafe;
    color: #6952C7;
}

/* Security Section */
.security {
    background-color: #f9fafb;
}

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

.security-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.security-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.security-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #000000 !important;
    color: rgb(255, 255, 255) !important;
    padding: 3rem 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.footer-section:first-child {
    flex: 2;
    min-width: 250px;
}

.footer-section a {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn-header-cta {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-section,
    .footer-section:first-child {
        flex: none;
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .chat-example {
        order: -1;
        justify-content: center;
    }
    
    .journey-flow {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .target-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-metrics {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 1024px) {
    .recursos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recurso-card {
        padding: 2rem 1.5rem;
    }
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-new {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .whatsapp-mockup {
        width: 320px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description h2 {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    

    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .whatsapp-mockup {
        width: 280px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-box {
        padding: 2rem;
    }
    
    .contact-box h3 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
}