* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

:root {
    --primary-cyan: #0052A3;
    --primary-black: #1a1a1a;
    --accent-gray: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #ffffff;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    border-bottom: 1px solid #f0f0f0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #0052A3;
}

.navbar-cta {
    background: #003D82;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.navbar-cta:hover {
    background: #002a5c;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-logo {
    display: none;
    text-align: center;
    padding: 20px 20px 10px;
    background: #ffffff;
}

.mobile-logo img {
    height: 70px;
    width: auto;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #333333;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn .arrow {
    font-size: 18px;
    font-weight: 400;
}

/* ===== SECTION CTA ===== */
.section-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.cta-button {
    padding: 16px 48px;
    background: #003D82;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: #002a5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 61, 130, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

h1 {
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 900;
}

h2 {
    font-size: 48px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 800;
}

h3 {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

p {
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    text-align: center;
    margin-bottom: 50px;
}

/* ===== SEÇÃO 1: HERO ===== */
.hero {
    background: linear-gradient(to bottom, #000000 0%, #2a2a2a 50%, #404040 100%);
    padding: 0px 20px 80px;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-form-ceo-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.hero-content {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.hero-logo {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    height: 200px;
    width: auto;
    display: block;
}

.headline {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 400;
}

.headline .highlight {
    color: #ffffff;
    font-weight: 900;
}

.subheadline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #003D82 0%, #0052A3 100%);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: -1;
}

.hero-image img {
    max-width: 90%;
    height: auto;
    display: block;
    border-radius: 50%;
    border: 6px solid #1a1a1a;
    position: relative;
    z-index: 1;
}

/* ===== HERO FORM ===== */
.hero-form {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    height: fit-content;
}

/* Estilização do formulário HubSpot */
.hero-form .hs-form-frame {
    width: 100%;
}

.hs-form-frame input[type="text"],
.hs-form-frame input[type="email"],
.hs-form-frame input[type="tel"],
.hs-form-frame select,
.hs-form-frame textarea {
    background: #ffffff !important;
    color: #1a1a1a !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    font-family: 'Inter Tight', sans-serif !important;
}

.hs-form-frame input[type="text"]::placeholder,
.hs-form-frame input[type="email"]::placeholder,
.hs-form-frame input[type="tel"]::placeholder,
.hs-form-frame textarea::placeholder {
    color: #999999 !important;
}

.hs-form-frame input[type="text"]:focus,
.hs-form-frame input[type="email"]:focus,
.hs-form-frame input[type="tel"]:focus,
.hs-form-frame select:focus,
.hs-form-frame textarea:focus {
    background: #ffffff !important;
    color: #1a1a1a !important;
    border-color: #0052A3 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.1) !important;
}

.hs-form-frame label {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    margin-bottom: 6px !important;
}

.hs-form-frame .hs-form-group {
    margin-bottom: 20px !important;
}

.hs-form-frame button[type="submit"],
.hs-form-frame input[type="submit"],
.hs-form-frame .hs-button {
    background: #1B7D3C !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.hs-form-frame button[type="submit"]:hover,
.hs-form-frame input[type="submit"]:hover,
.hs-form-frame .hs-button:hover {
    background: #155a30 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(27, 125, 60, 0.3) !important;
}

/* ===== HERO AUTHORITY CARD ===== */
.hero-authority {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 32px;
    background: #ffffff;
    border-radius: 20px;
    border: none;
    backdrop-filter: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    align-items: center;
    text-align: center;
    height: fit-content;
    max-width: 100%;
}

.hero-ceo-image {
    flex-shrink: 0;
}

.hero-ceo-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #e0e0e0;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-ceo-name {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.hero-ceo-title {
    font-size: 16px;
    color: #666666;
    margin-bottom: 4px;
    font-weight: 600;
}

.hero-ceo-bio {
    font-size: 14px;
    color: #555555;
    margin: 12px 0;
    line-height: 1.6;
    font-weight: 400;
}

.hero-connect-btn,
.hero-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.hero-connect-btn .material-icons,
.hero-whatsapp-btn .material-icons {
    font-size: 20px;
    font-weight: normal;
}

.hero-connect-btn .bi,
.hero-whatsapp-btn .bi {
    font-size: 20px;
}

.hero-connect-btn:hover,
.hero-whatsapp-btn:hover {
    background: #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.hero-connect-btn:active,
.hero-whatsapp-btn:active {
    transform: translateY(0);
}

.hero-authority-stats {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-authority-point .checkmark {
    color: #ffffff;
    font-weight: bold;
}

.placeholder-box {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    min-height: 500px;
}

/* ===== SEÇÃO 2: HOW IT WORKS ===== */
.how-it-works {
    padding: 40px 20px;
    background-color: #ffffff;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 0;
}

.step-card {
    text-align: left;
    padding: 60px 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
}

.step-card:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
}

.step-number {
    display: none;
}

.step-icon {
    font-size: 56px;
    width: 56px;
    height: 56px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.step-card h3 {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 22px;
}

.step-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.section-highlight {
    text-align: left;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 80px;
    margin-top: 120px;
    font-weight: 600;
    max-width: 900px;
    color: #000000;
}

.section-highlight .highlight-gray {
    color: #000000;
    font-weight: 600;
}

.color-bars {
    display: none;
}

/* ===== SEÇÃO 3: FEATURES ===== */
.features {
    padding: 80px 20px;
    background: #ffffff;
}

.features-highlight {
    text-align: left;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 80px;
    margin-top: 0;
    font-weight: 600;
    max-width: 900px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.feature-card {
    background: #f5f5f5;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 163, 0.15);
    border-color: #0052A3;
}

.feature-icon {
    font-size: 56px;
    width: 56px;
    height: 56px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 22px;
}

.feature-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

/* ===== SEÇÃO 4: SOCIAL PROOF ===== */
.social-proof {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: #f8fafb;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #0052A3;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 82, 163, 0.15);
}

.rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: #555555;
    margin-bottom: 24px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-radius: 0;
    flex-shrink: 0;
    display: none;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: #888888;
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat h3 {
    font-size: 36px;
    color: #0052A3;
    margin-bottom: 8px;
    font-weight: 900;
}

.stat p {
    color: #666666;
    font-size: 16px;
}

/* ===== SEÇÃO 5: FAQ ===== */
.faq {
    padding: 100px 20px;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    border: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question.active {
    background-color: #f0fffe;
    color: #0052A3;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #0052A3;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #555;
    line-height: 1.7;
}

/* ===== SEÇÃO 6: CTA FINAL ===== */
.cta-final {
    padding: 100px 20px;
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

/* Decoração geométrica */
.cta-final::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #003D82 0%, #0052A3 100%);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

.cta-final .container {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.cta-authority {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #FFB800;
}

.ceo-image {
    margin-bottom: 30px;
}

.ceo-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid #FFB800;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 82, 163, 0.2);
}

.ceo-name {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 900;
}

.ceo-title {
    font-size: 18px;
    color: #FFB800;
    margin-bottom: 20px;
    font-weight: 700;
}

.ceo-bio {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.authority-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: flex-start;
}

.authority-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.checkmark {
    color: #FFB800;
    font-weight: bold;
    font-size: 22px;
    flex-shrink: 0;
}

.cta-form-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    color: #1a1a1a;
    font-size: 36px;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
    font-weight: 900;
}

.form-header p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

.cta-form-wrapper {
    max-width: 100%;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid #e0e0e0;
}

.cta-form-wrapper .hs-form-frame {
    width: 100%;
}

.cta-trust {
    color: #888888;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.cta-final .btn {
    margin-top: 16px;
    background: #0052A3;
    color: #ffffff;
}

.cta-final .btn:hover {
    background: #003D82;
    box-shadow: 0 6px 20px rgba(0, 82, 163, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4,
.footer-column h5 {
    color: white;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #0052A3;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #999999;
}

/* ===== ANIMAÇÕES ===== */
/* Animações removidas */

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
        z-index: 1001;
    }

    .navbar-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 16px 20px;
        border-bottom: 1px solid #f0f0f0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-menu.active {
        max-height: 280px;
    }

    .navbar-menu li {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-menu li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .navbar-menu a {
        font-size: 15px;
        display: block;
        padding: 8px 0;
    }

    .navbar-cta {
        width: 100%;
        text-align: center;
        margin-top: 8px;
        padding: 10px 16px !important;
    }

    .section-cta-container {
        margin-top: 40px;
        padding-top: 30px;
    }

    .cta-button {
        padding: 14px 40px;
        font-size: 15px;
        width: 100%;
        max-width: 400px;
    }

    .hero {
        padding: 20px 20px 60px;
        min-height: auto;
        display: block;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-form-ceo-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .hero-form {
        padding: 30px 16px;
        width: 100%;
        max-width: 100%;
    }

    .hero-authority {
        width: 100%;
    }

    .hero-logo img {
        height: 100px;
        width: auto;
    }

    .hs-form-frame input[type="text"],
    .hs-form-frame input[type="email"],
    .hs-form-frame input[type="tel"],
    .hs-form-frame select,
    .hs-form-frame textarea {
        padding: 12px 14px !important;
        font-size: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hs-form-frame label {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        display: block !important;
    }

    .hs-form-frame button[type="submit"],
    .hs-form-frame input[type="submit"],
    .hs-form-frame .hs-button {
        padding: 12px 24px !important;
        font-size: 14px !important;
        width: 100% !important;
    }

    .hs-form-frame .hs-form-fieldgroup {
        margin-bottom: 16px !important;
    }

    .hs-form-frame .form-columns {
        width: 100% !important;
    }

    .headline {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .subheadline {
        font-size: 16px;
    }

    .hero-authority {
        margin-top: 0;
        padding: 24px 16px;
        gap: 12px;
        flex-direction: column;
        max-width: 100%;
    }

    .hero-ceo-image img {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .hero-ceo-name {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .hero-ceo-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-ceo-bio {
        font-size: 13px;
    }

    .hero-connect-btn,
    .hero-whatsapp-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero-image {
        order: 1;
        max-width: 100%;
    }

    .hero-image::before {
        width: 180px;
        height: 180px;
        top: -15px;
        right: -15px;
    }

    .hero-image img {
        max-width: 100%;
        width: 280px;
        height: 280px;
        border-width: 5px;
    }

    .headline {
        font-size: 40px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .subheadline {
        font-size: 17px;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-header h2 {
        font-size: 28px;
        text-align: center;
    }

    .form-header p {
        text-align: center;
        font-size: 14px;
    }

    .cta-authority {
        text-align: center;
    }

    .authority-points {
        align-items: center;
        gap: 12px;
    }

    .authority-point {
        font-size: 14px;
    }

    .cta-form-wrapper {
        padding: 28px;
    }

    .steps-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-highlight {
        font-size: 26px;
        margin-bottom: 30px;
        margin-top: 0;
        line-height: 1.4;
    }

    .step-card {
        padding: 20px 0;
    }

    .step-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .step-card p {
        font-size: 16px;
        line-height: 1.8;
        color: #666666;
    }

    .steps-grid {
        gap: 20px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .how-it-works,
    .features,
    .social-proof,
    .faq,
    .cta-final {
        padding: 60px 20px;
    }

    .btn-large {
        width: 100%;
        padding: 16px 24px;
    }

    .color-bars {
        flex-wrap: wrap;
    }

    .bar {
        width: 60px;
    }
}

/* ===== TABLET LANDSCAPE (1024px) ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-form {
        padding: 28px;
    }

    .headline {
        font-size: 52px;
        margin-bottom: 24px;
    }

    .subheadline {
        font-size: 18px;
        margin-bottom: 36px;
    }
}


@media (max-width: 480px) {
    .navbar {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .hero {
        padding: 20px 20px 50px;
        min-height: auto;
    }

    .hero .container {
        gap: 20px;
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }

    .hero-form {
        padding: 24px;
        order: 2;
    }

    .hero-form-ceo-wrapper {
        width: 100%;
        gap: 20px;
    }

    .hero-logo img {
        height: 80px;
        width: auto;
    }

    .headline {
        font-size: 28px;
    }

    .subheadline {
        font-size: 14px;
    }

    .hero-authority {
        order: 3;
    }

    .hs-form-frame input[type="text"],
    .hs-form-frame input[type="email"],
    .hs-form-frame input[type="tel"],
    .hs-form-frame select,
    .hs-form-frame textarea {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .hs-form-frame button[type="submit"],
    .hs-form-frame input[type="submit"],
    .hs-form-frame .hs-button {
        padding: 11px 20px !important;
        font-size: 13px !important;
    }

    .hero-authority {
        margin-top: 0;
        padding: 20px;
        gap: 16px;
    }

    .hero-ceo-image img {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }

    .hero-ceo-name {
        font-size: 18px;
    }

    .hero-ceo-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .hero-authority-points {
        gap: 8px;
    }

    .hero-authority-point {
        font-size: 14px;
        gap: 8px;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
        border-width: 4px;
    }

    .hero-image::before {
        width: 120px;
        height: 120px;
        top: -10px;
        right: -10px;
    }

    .headline {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .subheadline {
        font-size: 17px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .section-highlight {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .step-card {
        padding: 40px 0;
    }

    .step-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .step-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    .steps-grid {
        gap: 30px;
    }

    .ceo-image img {
        width: 140px;
        height: 140px;
    }

    .ceo-name {
        font-size: 22px;
    }

    .ceo-title {
        font-size: 14px;
    }

    .ceo-bio {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .authority-point {
        font-size: 13px;
        gap: 10px;
    }

    .checkmark {
        font-size: 16px;
    }

    .cta-form-wrapper {
        padding: 20px;
        margin-bottom: 12px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        border-radius: 0;
    }

    .cta-final {
        padding: 0;
        margin: 0;
    }

    .cta-final .container {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .cta-content {
        padding: 0;
        gap: 0;
    }

    .cta-form-section {
        order: -1;
        padding: 0 20px;
    }

    .cta-authority {
        order: 1;
        margin-top: 30px;
        padding: 30px 20px;
        border-radius: 12px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .form-header h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .form-header p {
        font-size: 13px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .step-card,
    .feature-card,
    .testimonial-card {
        padding: 24px;
    }

    .faq-question {
        padding: 16px;
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* ===== HUBSPOT FORM CUSTOMIZATION ===== */
/* Container do formulário */
.cta-form-wrapper .hs-form-frame {
    font-family: 'Inter Tight', sans-serif !important;
}

/* Inputs */
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form input[type="number"],
.hs-form textarea,
.hs-form select {
    font-family: 'Inter Tight', sans-serif !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    color: #1a1a1a !important;
    background-color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.hs-form input[type="text"]:focus,
.hs-form input[type="email"]:focus,
.hs-form input[type="tel"]:focus,
.hs-form input[type="number"]:focus,
.hs-form textarea:focus,
.hs-form select:focus {
    border-color: #0052A3 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.1) !important;
}

/* Labels */
.hs-form label {
    font-family: 'Inter Tight', sans-serif !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
    margin-bottom: 8px !important;
}

/* Submit Button */
.hs-form .hs-button {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-family: 'Inter Tight', sans-serif !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.hs-form .hs-button:hover {
    background-color: #333333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.hs-form .hs-button:active {
    transform: translateY(0) !important;
}

/* Error messages */
.hs-form .hs-error-msgs {
    color: #ef4444 !important;
}

.hs-form .hs-error-msgs label {
    color: #ef4444 !important;
    font-weight: 600 !important;
}

/* Required field indicator */
.hs-form .hs-fieldtype-radio label,
.hs-form .hs-fieldtype-checkbox label {
    font-weight: 500 !important;
    color: #1a1a1a !important;
}

/* Field wrapper */
.hs-form .hs-form-group {
    margin-bottom: 20px !important;
}

/* Description text */
.hs-form .hs-form-required-fields {
    color: #888888 !important;
    font-size: 13px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Checkbox & Radio styling */
.hs-form input[type="checkbox"],
.hs-form input[type="radio"] {
    accent-color: #0052A3 !important;
    cursor: pointer !important;
}

/* ===== THANK YOU PAGE ===== */
.thankyou {
    background: linear-gradient(to bottom, #000000 0%, #2a2a2a 50%, #404040 100%);
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou .container {
    max-width: 700px;
}

.thankyou-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thankyou-icon {
    margin-bottom: 24px;
}

.thankyou-icon i {
    font-size: 80px;
    color: #003D82;
}

.thankyou-headline {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.thankyou-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.thankyou-message {
    text-align: left;
    background: #f5f5f5;
    border-left: 4px solid #003D82;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thankyou-message p {
    font-size: 15px;
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.thankyou-message strong {
    color: #1a1a1a;
    font-weight: 700;
}

.thankyou-message a {
    color: #003D82;
    text-decoration: none;
    font-weight: 600;
}

.thankyou-message a:hover {
    text-decoration: underline;
}

.thankyou-steps {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.thankyou-steps li {
    font-size: 15px;
    color: #555555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thankyou-steps li:last-child {
    margin-bottom: 0;
}

.thankyou-cta {
    display: flex;
    justify-content: center;
}

.footer {
    background: #1a1a1a;
    color: #888888;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #333333;
}

/* Responsive */
@media (max-width: 768px) {
    .thankyou {
        padding: 60px 20px;
        min-height: auto;
    }

    .thankyou-content {
        padding: 40px 24px;
    }

    .thankyou-headline {
        font-size: 36px;
    }

    .thankyou-subtitle {
        font-size: 18px;
    }

    .thankyou-icon i {
        font-size: 60px;
    }

    .thankyou-message {
        padding: 20px;
    }

    .thankyou-message p {
        font-size: 14px;
    }

    .thankyou-steps li {
        font-size: 14px;
    }
}