/* ============================================
   V2 - Uniform section headlines (match hero size)
   ============================================ */

h1.headline {
    font-size: 3.25rem;
    line-height: 1.05;
}

@media (max-width: 767px) {
    h1.headline {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    h1.headline {
        font-size: 2rem;
    }
}

/* ============================================
   Hero V2 - Split Hero with Inline Form
   ============================================ */

.hero-v2 {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F0EB 100%);
    padding: 6rem 0 5rem;
    scroll-margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(244, 244, 244, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.hero-v2 .hero-v2-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-v2 .hero-v2-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-v2 .hero-v2-content {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }
}

/* Left side - Text */
.hero-v2-text {
    position: relative;
    z-index: 1;
}

.hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-v2-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

.hero-v2-headline {
    font-family: 'Montserrat', var(--font-family);
    font-size: 3.25rem;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.hero-v2-headline .highlight {
    color: var(--color-dark);
}

.hero-v2-subtext {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Social proof */
.hero-v2-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-v2-avatars {
    display: flex;
    align-items: center;
}

.hero-v2-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -10px;
}

.hero-v2-avatars img:first-child {
    margin-left: 0;
}

.hero-v2-social-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-v2-stars {
    color: #F59E0B;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.hero-v2-social-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.4;
}

.hero-v2-social-text strong {
    color: var(--color-text);
    font-weight: var(--font-weight-semibold);
}

/* Right side - Form card */
.hero-v2-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.hero-v2-form-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 0.25rem;
}

.hero-v2-form-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 2rem;
}

/* Form fields inside hero card */
.hero-v2-form .hero-form-field {
    margin-bottom: 1.25rem;
}

.hero-v2-form .hero-form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.hero-v2-form .hero-form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-v2-form .hero-form-input-wrapper .input-icon {
    position: absolute;
    left: 0.875rem;
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    pointer-events: none;
    flex-shrink: 0;
}

.hero-v2-form .hero-form-input-wrapper input,
.hero-v2-form .hero-form-input-wrapper select {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    line-height: 1.5;
}

.hero-v2-form .hero-form-input-wrapper input:focus,
.hero-v2-form .hero-form-input-wrapper select:focus {
    outline: none;
    border-color: var(--color-dark);
    box-shadow: 0 0 0 2px rgba(36, 57, 165, 0.15);
}

.hero-v2-form .hero-form-input-wrapper input::placeholder {
    color: #9CA3AF;
}

.hero-v2-form .hero-form-input-wrapper input.error,
.hero-v2-form .hero-form-input-wrapper select.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

.hero-v2-form .hero-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
    color: var(--color-text);
}

.hero-v2-form .hero-form-select option[value=""] {
    color: #9CA3AF;
}

.hero-v2-form .btn-hero-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: #fff;
    background: var(--color-dark);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 200ms ease, transform 100ms ease;
    margin-top: 0.5rem;
    position: relative;
    min-height: 54px;
}

.hero-v2-form .btn-hero-submit:hover {
    background: #1c2e8a;
}

.hero-v2-form .btn-hero-submit:active {
    transform: scale(0.99);
}

.hero-v2-form .btn-hero-submit .arrow {
    font-size: 1.25rem;
    transition: transform 200ms ease;
}

.hero-v2-form .btn-hero-submit:hover .arrow {
    transform: translateX(3px);
}

.hero-v2-form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.hero-v2-form-disclaimer svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
}

/* Error messages inside hero form */
.hero-v2-form .error-message {
    display: flex;
    align-items: baseline;
    width: 100%;
    font-size: 0.75rem;
    color: var(--color-error);
    margin-top: 0.35rem;
    min-height: 0;
    opacity: 0;
    transition: opacity 200ms ease;
}

.hero-v2-form .error-message.show {
    opacity: 1;
    min-height: 1.25rem;
}

/* Button states */
.hero-v2-form .btn-hero-submit.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.hero-v2-form .btn-hero-submit.is-loading .btn-text,
.hero-v2-form .btn-hero-submit.is-success .btn-text {
    opacity: 0;
}

.hero-v2-form .btn-hero-submit.is-loading .btn-loading,
.hero-v2-form .btn-hero-submit.is-success .btn-success {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-v2-form .btn-hero-submit .btn-loading,
.hero-v2-form .btn-hero-submit .btn-success {
    display: none;
}

.hero-v2-form .btn-hero-submit .btn-loading svg {
    animation: spin 1.4s linear infinite;
    width: 24px;
    height: 24px;
}

.hero-v2-form .btn-hero-submit .btn-loading svg circle {
    stroke: #fff;
    fill: none;
    stroke-width: 3.6;
    stroke-dasharray: 80px, 200px;
    stroke-dashoffset: 0;
    animation: dash 1.4s ease-in-out infinite;
}

.hero-v2-form .btn-hero-submit .btn-success svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* ============================================
   Comparison Section (Sem vs Com TruckPro)
   ============================================ */

.comparison-section {
    background: var(--color-bg);
    padding: 5rem 0;
}

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

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.comparison-card {
    position: relative;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    overflow: hidden;
}

.comparison-card--negative {
    background: #FEF2F2;
    border-left: 4px solid #EF4444;
}

.comparison-card--positive {
    background: #F0FDF4;
    border-left: 4px solid #22C55E;
}

/* Watermark icon */
.comparison-card-watermark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    opacity: 0.08;
    pointer-events: none;
}

.comparison-card--negative .comparison-card-watermark svg {
    stroke: #EF4444;
}

.comparison-card--positive .comparison-card-watermark svg {
    stroke: #22C55E;
}

/* Card header */
.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.comparison-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.comparison-icon--negative {
    color: #EF4444;
}

.comparison-icon--positive {
    color: #22C55E;
}

.comparison-card-title {
    font-size: 1.35rem;
    font-weight: var(--font-weight-bold);
    margin: 0;
    line-height: 1.3;
}

.comparison-card-title--negative {
    color: #DC2626;
}

.comparison-card-title--positive {
    color: #16A34A;
}

/* List items */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
}

.comparison-bullet {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.comparison-bullet--negative {
    color: #EF4444;
}

.comparison-bullet--positive {
    color: #22C55E;
}

/* ============================================
   Features V2 - 3x2 Grid Cards
   ============================================ */

.features-v2-section {
    background: #F3F4F6;
    padding: 5rem 0;
}


.features-v2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .features-v2-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .features-v2-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.feature-v2-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    transition: box-shadow 200ms ease;
}

.feature-v2-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Icon badges */
.feature-v2-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-v2-icon svg {
    width: 24px;
    height: 24px;
}

.feature-v2-icon--orange {
    background: #FEF3C7;
    color: #D97706;
}

.feature-v2-icon--blue {
    background: #DBEAFE;
    color: #2563EB;
}

.feature-v2-icon--green {
    background: #D1FAE5;
    color: #059669;
}

.feature-v2-icon--slate {
    background: #E2E8F0;
    color: #475569;
}

.feature-v2-icon--purple {
    background: #EDE9FE;
    color: #7C3AED;
}

.feature-v2-icon--indigo {
    background: #E0E7FF;
    color: #4338CA;
}

.feature-v2-title {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-v2-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* ============================================
   Testimonial V2 - Single Card + Stats
   ============================================ */

.testimonial-v2-section {
    background: var(--color-dark);
    padding: 5rem 0;
}

.testimonial-v2-section .headline {
    color: #fff;
    font-style: italic;
}

.testimonial-v2-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-v2-quote-mark {
    position: absolute;
    top: 1.25rem;
    left: 1.75rem;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.7;
}

.testimonial-v2-stars {
    color: var(--color-primary);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

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

.testimonial-v2-divider {
    border: none;
    border-top: 1px solid #E5E7EB;
    margin: 1.5rem auto;
    width: 80%;
}

.testimonial-v2-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-v2-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-v2-author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-v2-author-name {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
}

.testimonial-v2-author-role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Stats row */
.testimonial-v2-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    text-align: center;
}

.testimonial-v2-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-v2-stat-value {
    font-family: 'Montserrat', var(--font-family);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.testimonial-v2-stat-label {
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 767px) {
    .hero-v2 {
        padding: 5rem 0 3rem;
    }

    .hero-v2-headline {
        font-size: 2.25rem;
    }

    .hero-v2-subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-v2-form-card {
        padding: 2rem 1.5rem;
    }

    .hero-v2-social-proof {
        flex-wrap: wrap;
    }

    .comparison-section {
        padding: 3rem 0;
    }

    .comparison-card {
        padding: 2rem 1.5rem;
    }

    .features-v2-section {
        padding: 3rem 0;
    }

    .feature-v2-card {
        padding: 1.5rem;
    }

    .testimonial-v2-section {
        padding: 3rem 0;
    }

    .testimonial-v2-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-v2-quote-mark {
        font-size: 3rem;
        top: 0.75rem;
        left: 1rem;
    }

    .testimonial-v2-text {
        font-size: 1rem;
    }

    .testimonial-v2-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .testimonial-v2-stat-value {
        font-size: 2rem;
    }

    .final-cta-card {
        padding: 3rem 1.5rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-btn-primary,
    .final-cta-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   About Story Section
   ============================================ */

.about-story-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.about-story-closing {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.about-signature-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.about-signature-role {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* ============================================
   Final CTA Section
   ============================================ */

.final-cta-section {
    padding: 5rem 0;
    background: #fff;
}

.final-cta-card {
    background: #F3F4F6;
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: 'Montserrat', var(--font-family);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.final-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(36, 57, 165, 0.35);
}

.final-cta-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.2s;
}

.final-cta-btn-whatsapp:hover {
    border-color: #25D366;
}

.final-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.final-cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.final-cta-trust-separator {
    color: var(--color-text-secondary);
    opacity: 0.5;
}

@media (max-width: 480px) {
    .hero-v2-headline {
        font-size: 2rem;
    }
}
