﻿/* ========================================
   CSS Variables (Design Tokens)
   ======================================== */
:root {
    --background: #000000;
    --foreground: #FFFFFF;
    --card: #0D0D0D;
    --card-foreground: #FFFFFF;
    --primary: rgb(255, 175, 31);
    --primary-foreground: #0D0D0D;
    --secondary: #252525;
    --secondary-foreground: #FFFFFF;
    --muted: #252525;
    --muted-foreground: #F5F5F5;
    --border: rgba(255, 175, 31, 0.55);
    --radius: 0.5rem;
    --border-line: #252525;
    --card-line: rgba(255, 255, 255, 0.08);
    --font-sans: "Open Sans", sans-serif;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-primary {
    color: var(--primary) !important;
}

.font-bold {
    font-weight: 700 !important;
}

.hidden-mobile {
    display: none;
}

@media (min-width: 640px) {
    .hidden-mobile {
        display: inline-flex;
    }
}

/* ========================================
   Layout Containers
   ======================================== */
.main-content {
    min-height: 100vh;
}

.section-container {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--primary);
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.section-subtitle {
    color: var(--muted-foreground);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.5px
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
        color: var(--primary);
    }
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

    .btn-primary:hover {
        background-color: rgba(255, 175, 31, 0.9);
    }

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border-color: rgba(255, 175, 31, 0.5);
}

    .btn-outline:hover {
        background-color: var(--secondary);
    }

.btn-ghost {
    background-color: transparent;
    color: var(--foreground);
    border-color: transparent;
}

    .btn-ghost:hover {
        background-color: var(--secondary);
    }

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    padding: 12px 29px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.14px;
}

.arrow-icon {
    font-size: 1.25rem;
}

.btn-icon-left {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.25rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 248px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.rating-badge {
    display: inline-flex;
    align-items: center;    
    padding: 16px;
}

.stars {
    display: flex;
}

.star {
    color: var(--primary);
    font-size: 1rem;
}

.rating-text {
    color: var(--primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.08px;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-wrap: balance;
    line-height: 1.1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 32px;
}
.hero-stats-card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 8px;
    background: #0D0D0D;
}
.hero-stats-label {
    color: var(--primary);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.32px;
}
.hero-stats-value {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    color: var(--muted-foreground);
    max-width: 50rem;
    margin: 0px auto 2rem;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.5px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .quick-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--card);
    border: 0.5px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   ROI Stats Section
   ======================================== */
.roi-stats-section {
    padding: 5rem 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.roi-stat-card {
    position: relative;
    background: #0D0D0D;
    border: 0.5px solid var(--card-line);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease-in-out;
}

    .roi-stat-card:hover {
        border-color: rgba(255, 175, 31, 0.5);
        box-shadow: var(--primary);
        transform: translateY(-5px);
    }

.stat-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 175, 31, 0.15);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.stat-value-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stat-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ========================================
   Time Comparison Section
   ======================================== */
.time-comparison-section {
    display: flex;
    padding: 80px 248px;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
    align-items: center;
    max-width: 53rem;
    margin: auto;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr auto 1fr;
    }
}

.comparison-card {
    background-color: var(--card);
    border: 0.5px solid var(--primary);
    border-radius: 1rem;
    padding: 3rem 1rem;
    text-align: center;
}

.comparison-after {
    background-color: var(--primary);
}

.comparison-label {
    color: var(--muted-foreground);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.18px;
}

.comparison-after .comparison-label {
    color: var(--background);
}

.comparison-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    padding: 10px;
}

.comparison-after .comparison-value {
    color: var(--background);
}

.comparison-unit {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.2px;
}

.comparison-after .comparison-unit {
    color: var(--background);
}

.comparison-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

    .comparison-note .highlight {
        font-weight: 500;
        color: var(--foreground);
    }

.arrow-circle {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.arrow-icon-large {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

    .arrow-icon-large svg {
        width: 2rem;
        height: 2rem;
    }

.savings-callout {
    margin-top: 3rem;
    text-align: center;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
}

.savings-value {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--primary);
}

.savings-info {
    text-align: left;
}

.savings-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.2px;
    color: var(--foreground);
}

.savings-subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.08px;
    color: var(--muted-foreground);
}

/* ========================================
   ROI Breakdown Section
   ======================================== */
.roi-breakdown-section {
    padding: 6rem;
}

.breakdown-grid {
    display: flex;
    justify-content: center; 
    gap: 2rem; 
    flex-wrap: wrap; 
    width: 100%;
}

@media (min-width: 1024px) {
    .breakdown-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .breakdown-card {
        flex-basis: 100%; 
        max-width: 100%;
    }
}

.breakdown-card {
    flex: 0.15; 
    flex-basis: 300px; 
    max-width: 500px;    
    display: flex;
    flex-direction: column;
    height: auto; 
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.breakdown-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}


.improvements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.improvement-item {
    margin-bottom: 0;
}

.improvement-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.improvement-name {
    color: var(--foreground);
}

.improvement-percent {
    color: var(--muted-foreground);
}

.progress-bar {
    height: 0.5rem;
    background-color: var(--secondary);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 9999px;
    transition: width 1s ease;
}

.roi-areas-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roi-area-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background-color: rgba(37, 37, 37, 0.5);
    border-radius: 0.75rem;
}

.roi-rank {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background-color: var(--primary);
    color: var(--bs-black);
}

   

.roi-area-info {
    flex: 1;
}

.roi-area-name {
    font-weight: 500;
    color: var(--foreground);
}

.roi-area-percent {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon {
    width: 28px;
    height: 30px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.challenge-text {
    color: var(--foreground);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 5rem 1.5rem;
}

.testimonial-container {
    max-width: 72rem; 
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
}

.quote-icon {
    font-size: 3rem;
    color: rgb(255 175 31 / 66%);
    margin-bottom: 1.5rem;
    line-height: 1;
}


.testimonial-content {
    display: flex;
    flex-direction: column; 
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .testimonial-content {
        flex-direction: row; 
        align-items: flex-start; 
        justify-content: space-between;
    }
}


.testimonial-main {
    flex: 1; 
    display: flex;
    flex-direction: column;
    min-width: 0; 
    margin-top: 20px;
}

.testimonial-company {
    font-size: 1.75rem; 
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.testimonial-challenge {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.18px;
}

.testimonial-times {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem; 
}

.time-row {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .time-row {
        flex-direction: row; 
        align-items: center;
        gap: 1rem;
    }
}

.time-label {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.time-value {
    color: var(--foreground);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
}

.testimonial-stats {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    align-self: stretch;
}

@media (min-width: 992px) {
    .testimonial-stats {
        width: 340px; 
        flex-shrink: 0; 
    }
}

.testimonial-stat-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: left; 
}

.testimonial-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    text-align: left; 
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.testimonial-stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: left; 
    line-height: 1.3;
}


.financial-impact {
    margin-top: auto; 
    padding-top: 0.5rem;
}

    .financial-impact p {
        color: var(--muted-foreground);
        font-size: 0.95rem;
    }

.impact-label {
    font-weight: 600;
    color: var(--foreground);
    margin-right: 0.5rem;
}


.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}
.nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.2s ease;
}



    .nav-btn:hover {
        background-color: var(--secondary);
    }



    .nav-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }



.nav-dots {
    display: flex;
    gap: 0.5rem;
}



.nav-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(153, 153, 153, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}



    .nav-dot.active {
        width: 1.5rem;
        background-color: var(--primary);
    }
.testimonial-photo{
    border-radius:999px;
}

.company-header {
    display: flex;
    align-items: center; 
    gap: 15px; 
    margin-bottom: 1rem; 
}

.testimonial-photo {
    width: 60px; 
    height: 60px;
    border-radius: 50%; 
    object-fit: fill; 
}

.testimonial-company {
    margin-bottom: 0 !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.6px;
    color: var(--primary);
}
/* ========================================
   Testimonials Navigation (New Buttons)
   ======================================== */

.testimonial-wrapper {
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: 2rem; 
    width: 100%;
    position: relative;
}


.testimonial-card {
    flex: 1; 
    max-width: 1000px;
    background-color: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
}

.nav-arrow {
    background: transparent;
    border: 0px solid rgba(255, 255, 255, 0.1); 
    border-radius: 50%; 
    color: var(--primary); 
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
}

    .nav-arrow:hover {
        background-color: var(--primary); 
        border-color: var(--primary);
        color: #000; 
        transform: scale(1.1); 
    }

    .nav-arrow svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.testimonial-nav-dots {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .testimonial-wrapper {
        gap: 0.5rem; 
    }

    .nav-arrow {
        width: 2.5rem; 
        height: 2.5rem;
        border-width: 1px; 
    }

        .nav-arrow svg {
            width: 1.2rem;
            height: 1.2rem;
        }

    .testimonial-card {
        padding: 1.5rem; 
    }
}

/* ========================================
   RESPONSIVIDADE — Tablet e Smartphone
   ======================================== */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 60px;
    }

    .time-comparison-section {
        padding: 80px 60px;
        gap: 40px;
    }

    .roi-breakdown-section {
        padding: 60px 40px;
    }

    .section-title {
        font-size: 38px;
        line-height: 48px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-stats-card {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

/* ── Smartphone grande / Tablet pequeno (max 768px) ── */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        line-height: 26px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-stats-card {
        flex: 1 1 100%;
        width: 100%;
    }

    .hero-stats-label {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Comparison */
    .time-comparison-section {
        padding: 60px 20px;
        gap: 32px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .arrow-circle {
        transform: rotate(90deg);
    }

    .comparison-card {
        padding: 2rem 1rem;
    }

    .comparison-value {
        font-size: 2.25rem;
    }

    .savings-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }

    .savings-info {
        text-align: center;
    }

    .savings-value {
        font-size: 2.5rem;
    }

    /* ROI Breakdown */
    .roi-breakdown-section {
        padding: 40px 20px;
    }

    .breakdown-grid {
        flex-direction: column;
        align-items: center;
    }

    .breakdown-card {
        flex-basis: 100%;
        max-width: 100%;
        width: 100%;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 40px 16px;
    }

    .testimonial-wrapper {
        gap: 0.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-content {
        flex-direction: column;
    }

    .testimonial-stats {
        width: 100%;
        padding: 12px 0;
    }

    .testimonial-company {
        font-size: 18px;
    }

    .testimonial-challenge {
        font-size: 15px;
    }

    .time-label,
    .time-value {
        font-size: 14px;
    }
}

/* ── Smartphone pequeno (max 480px) ── */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 16px;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-stats-label {
        font-size: 20px;
    }

    .hero-stats-value {
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .comparison-value {
        font-size: 1.875rem;
    }

    .comparison-unit {
        font-size: 16px;
    }

    .roi-breakdown-section {
        padding: 32px 16px;
    }

    .testimonials-section {
        padding: 32px 12px;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .nav-arrow {
        width: 2rem;
        height: 2rem;
    }

        .nav-arrow svg {
            width: 1rem;
            height: 1rem;
        }

    .company-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .testimonial-photo {
        width: 48px;
        height: 48px;
    }
}