:root {
    --color-dark: #111;
    --color-light: #f6f6f6;
    --color-primary: #1e1e1e;
    --color-accent: #8B0000;
}

html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size:15px;
    margin: 0;
    padding: 0;
    background: var(--color-light);
    color: var(--color-dark);
    scroll-behavior: smooth;
    line-height: 1.75;
}

.seta{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:var(--color-accent);
    color:white;
    border:none;
    padding:5px 10px;
    border-radius:50%;
    font-size:1rem;
    box-shadow:0 2px 6px rgba(0,0,0,0.15);
    z-index:1;
}

.seta:hover,
.seta:active,
.seta:focus{
    background-color: #000;
}

.seta-e{
    left:-15px;
}

.seta-d{
    right: -16px;
}

.seta-b{
    text-align:center;
    margin-top: 2rem;
}

.seta-b .fa-angle-down{

}

.slider{
    overflow-x:auto;
    display:flex;
    gap:1rem;
    scroll-snap-type:x mandatory;
    padding-bottom: 0.5rem;
}

.img-slider{
    flex: 0 0 85%;
    scroll-snap-align:center;
    /*max-height:200px;*/
    border-radius:8px;
}

.vendas-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.fixacao-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

#scroll-gallery img{
    flex: 0 0 65%;
    scroll-snap-align: center;
    border-radius: 12px;
    max-height: 320px;
    object-fit: cover;
}

a:hover, a:focus, a:active, a.active, .active a{
    color: #fff !important;
}

h1, h2, h3{
    font-family: 'Poppins', sans-serif;
    color:#000;
    font-size:32px;
    line-height:38px;
    text-transform: uppercase;
}

h1{
    letter-spacing: 0;
}

h2{
    font-size: 24px;
    letter-spacing: 0;
}

h3{
    font-size: 23px;
    line-height: 27px;
    color: var(--color-accent) !important;
}

section h2 {
    margin-bottom: 1rem;
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
    letter-spacing: 0;
}

.cta-buttons .btn,
.btn {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.linha-tempo{
    height: 2px;
    background: var(--color-accent);
    flex: 1;
    max-width: 80px;
}

section {
    padding: 2rem;
    max-width: 1100px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

section img:hover {
    transform: scale(1.02);
}

.pitch-destaque {
    background: var(--color-accent);
    color: white;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
}

.cta-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-accent);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.tab-menu li a.active {
    background-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Tabela */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

thead th {
    background: var(--color-accent);
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
}

td {
    padding: 0.75rem;
    border: 1px solid #ddd;
}

tbody tr:hover {
    background-color: #f9f9f9;
}

.tab-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.tab-menu li {
    margin: 0;
}

.tab-menu li a {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background-color: #eee;
    color: var(--color-dark);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-menu li a:hover,
.tab-menu li a:active,
.tab-menu li a:focus{
    background-color: var(--color-accent);
    color: #fff !important;
}

@media (max-width: 768px) {
    .hero,
    section {
        padding: 1.5rem 1rem;
    }

    .hero-text .btn,
    #economia a{
        margin-bottom: 10px;
    }

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

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .tab-navigation{
        padding: 0 24px;
    }

    .tab-menu {
        flex-direction: column;
    }

    .tab-menu li a{
        display: block;
        text-align: center;
    }

    .linha-tempo{
        display: none;
    }

    #scroll-gallery {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 1rem 0;
    }

    #scroll-gallery img {
        scroll-snap-align: center;
        transition: transform 0.3s ease;
        flex: 0 0 50%;
        max-height: 300px;
        object-fit: cover;
        border-radius: 8px;
    }

    #scroll-gallery img:hover {
        transform: scale(1.03);
    }

    #vendas .fas {
        transition: transform 0.3s ease;
    }

    #vendas .fas:hover {
        transform: scale(1.15);
    }

    #vendas h3 {
        margin-top: 0.5rem;
        font-size: 1.2rem;
    }

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

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

    #suporte{
        padding-bottom: 70px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(6px);
    }

    60% {
        transform: translateY(3px);
    }
}

.card,
.scroll-card,
.pitch-destaque,
.btn,
.tab-menu li a {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

div[style*="box-shadow: 0 4px 12px"],
div[style*="box-shadow: 0 4px 10px"] {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

.galeria-modernizada {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.card-hover {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card-hover:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card-hover img {
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.brand-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.brand-card p {
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.grid-diferenciais {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-diferenciais > div {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.grid-diferenciais > div:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .grid-diferenciais {
        grid-template-columns: 1fr;
    }

    .grid-diferenciais > div {
        border-bottom: 1px solid #ddd;
        padding-bottom: 2rem;
    }
}
