* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --amarelo: #FFD700;
    --preto: #000000;
    --cinza-escuro: #1a1a1a;
    --cinza-medio: #333333;
    --branco: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--preto);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: var(--preto);
    color: var(--branco);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--amarelo);
    margin: 0;
}

.logo-text h1 span {
    color: var(--branco);
}

.tagline {
    font-size: 0.9rem;
    color: var(--amarelo);
    font-weight: 300;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--amarelo);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--amarelo);
    transition: all 0.3s;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn-whatsapp {
    background: var(--amarelo);
    color: var(--preto);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

/* HERO */
.hero {
    color: var(--branco);
    padding: 100px 0;
    padding-top: 200px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--amarelo);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--amarelo);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--amarelo);
    color: var(--preto);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: #dc2626;
    color: #fff;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #b91c1c;
    color: #fff;
    border-color: #b91c1c;
}

.hero-contacts {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
}

.contact-item span {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--amarelo);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--branco);
    text-decoration: none;
    font-size: 1.1rem;
}

/* PARCEIROS */
.parceiros {
    background: var(--branco);
    padding: 60px 0;
    border-bottom: 3px solid var(--amarelo);
}

.parceiros h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--preto);
}

.parceiros-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.parceiro-item {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--branco);
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s;
}

.parceiro-item:hover {
    border-color: var(--amarelo);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.parceiro-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.parceiro-item:hover img {
    filter: grayscale(0%);
}

/* SECTIONS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--preto);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--amarelo);
    font-weight: 700;
}

/* EMPRESA */
.empresa {
    padding: 80px 0;
    background: #f9f9f9;
}

.empresa-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.empresa-text p {
    margin-bottom: 20px;
}

.empresa-valores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.valor-card {
    background: var(--branco);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.valor-card:hover {
    transform: translateY(-10px);
}

.valor-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.valor-card h3 {
    color: var(--amarelo);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 900;
}

/* SERVICOS */
.servicos {
    padding: 80px 0;
    background: var(--branco);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servico-card {
    background: var(--preto);
    color: var(--branco);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid var(--preto);
}

.servico-card:hover {
    border-color: var(--amarelo);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.servico-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.servico-card h3 {
    color: var(--amarelo);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* EQUIPAMENTOS */
.equipamentos {
    padding: 80px 0;
    background: #f9f9f9;
}

.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.equipamento-card {
    background: var(--amarelo);
    color: var(--preto);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.equipamento-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.equipamento-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.equipamento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* LOCALIZACAO */
.localizacao {
    padding: 80px 0;
    background: var(--branco);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.localizacao-info h3 {
    color: var(--amarelo);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.localizacao-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.localizacao-mapa iframe {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer {
    background: var(--preto);
    color: var(--branco);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--amarelo);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section:nth-child(2) {
    margin-top: -30px;
}

.footer-contacts, .footer-info {
    list-style: none;
}

.footer-contacts li, .footer-info li {
    margin-bottom: 10px;
}

.footer-contacts a, .footer-info a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contacts a:hover, .footer-info a:hover {
    color: var(--amarelo);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 769px) {
    .social-links {
        justify-content: flex-start;
        padding-left: 40px;
    }
}

/* Instagram Button */
.instagram-button {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    padding: 15px 30px;
    position: relative;
    width: auto;
    min-width: 200px;
    height: auto;
    transition: 0.3s;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.instagram-button p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.instagram-button svg {
    margin: 0;
    padding: 0;
    height: 1.5em;
    width: 1.5em;
    fill: #fff;
    flex-shrink: 0;
}

.instagram-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
}

.social-links a {
    color: var(--amarelo);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--cinza-medio);
    color: #999;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--branco);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.whatsapp-float:hover {
    transform: scale(1.1) translate3d(0, 0, 0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .logo {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
        flex: 1;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
    }
    
    .nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 500px;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
        background: var(--cinza-escuro);
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .nav a {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav li:last-child a {
        border-bottom: none;
    }
    
    .header-contact {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: auto;
        flex: 1;
        max-width: 48%;
    }
    
    .hero-contacts {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .contact-item {
        width: calc(50% - 5px);
        max-width: none;
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .contact-item span {
        font-size: 1.2rem;
    }
    
    .contact-item strong {
        font-size: 0.75rem;
    }
    
    .contact-item a {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .empresa {
        padding: 80px 0;
        margin-top: -70px;
    }
    
    .empresa > .container {
        padding: 0;
    }
    
    .empresa .section-header {
        margin: 0;
        padding: 30px 20px 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 20px 20px 0 0;
        box-shadow: none;
        border: 1px solid rgba(255,215,0,0.2);
        border-bottom: none;
        margin: 0 10px 0;
    }
    
    .empresa .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .empresa .section-subtitle {
        font-size: 1rem;
    }
    
    .empresa-content {
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin: 0 10px;
        border: 1px solid rgba(255,215,0,0.2);
        border-top: none;
        padding: 20px 20px 30px;
    }
    
    .empresa-text {
        font-size: 1rem;
        padding: 0;
        background: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0 0 10px 0;
        border: none;
    }
    
    .empresa-text p {
        margin-bottom: 15px;
    }
    
    .empresa-valores {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .valor-card {
        padding: 20px 10px;
    }
    
    .valor-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .valor-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .valor-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .servicos {
        padding: 0;
        margin-top: -70px;
    }
    
    .servicos > .container {
        padding: 0;
    }
    
    .servicos .section-header {
        margin: 0;
        padding: 30px 20px 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 20px 20px 0 0;
        box-shadow: none;
        border: 1px solid rgba(255,215,0,0.2);
        border-bottom: none;
        margin: 0 10px 0;
    }
    
    .servicos .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .servicos .section-subtitle {
        font-size: 1rem;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin: 0 10px;
        border: 1px solid rgba(255,215,0,0.2);
        border-top: none;
        padding: 20px;
    }
    
    .servico-card {
        padding: 20px 10px;
    }
    
    .servico-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .servico-card h3 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .servico-card p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .equipamentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .equipamentos {
        margin-top: -150px !important;
    }
    
    .equipamentos > .container {
        padding: 0;
    }
    
    .equipamentos .section-header {
        margin: 0;
        padding: 30px 20px 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 20px 20px 0 0;
        box-shadow: none;
        border: 1px solid rgba(255,215,0,0.2);
        border-bottom: none;
        margin: 0 10px 0;
    }
    
    .equipamentos .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .equipamentos .section-subtitle {
        font-size: 1rem;
    }
    
    .equipamentos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin: 0 10px;
        border: 1px solid rgba(255,215,0,0.2);
        border-top: none;
    }
    
    .equipamento-card {
        padding: 25px 15px;
    }
    
    .equipamento-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .equipamento-card h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .equipamento-card p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .frota {
        padding: 0;
        margin-top: -70px;
        background: #f9f9f9 !important;
    }
    
    .frota > .container {
        padding: 0;
    }
    
    .frota .section-header {
        margin: 0;
        padding: 30px 20px 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 20px 20px 0 0;
        box-shadow: none;
        border: 1px solid rgba(255,215,0,0.2);
        border-bottom: none;
        margin: 0 10px 0;
    }
    
    .frota .section-header h2 {
        color: var(--preto) !important;
        font-size: 1.8rem;
    }
    
    .frota .section-subtitle {
        color: var(--amarelo) !important;
        font-size: 1rem;
    }
    
    .frota-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin: 0 10px;
        border: 1px solid rgba(255,215,0,0.2);
        border-top: none;
    }
    
    .frota-item {
        height: 150px !important;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .localizacao {
        padding: 0;
        margin-top: -90px !important;
    }
    
    .localizacao > .container {
        padding: 0;
    }
    
    .localizacao .section-header {
        margin: 0;
        padding: 30px 20px 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 20px 20px 0 0;
        box-shadow: none;
        border: 1px solid rgba(255,215,0,0.2);
        border-bottom: none;
        margin: 0 10px 0;
    }
    
    .localizacao .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .localizacao .section-subtitle {
        font-size: 1rem;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 20px;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, rgba(128,128,128,0.05) 50%, rgba(255,215,0,0.08) 100%);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin: 0 10px;
        border: 1px solid rgba(255,215,0,0.2);
        border-top: none;
        padding: 20px;
    }
    
    .localizacao-info {
        text-align: center;
    }
    
    .localizacao-info h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .localizacao-info p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .localizacao-mapa iframe {
        border-radius: 15px;
    }
    
    .parceiros-slider {
        justify-content: flex-start;
    }
    
    .parceiro-item {
        flex: 0 0 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}


/* FROTA */
.frota {
    padding: 80px 0;
    background: var(--cinza-escuro);
    color: var(--branco);
}

.frota .section-header h2 {
    color: var(--amarelo);
}

.frota-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.frota-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.frota-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.frota-item:hover img {
    transform: scale(1.1);
}

.frota-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.frota-item:hover .frota-overlay {
    transform: translateY(0);
}

.frota-overlay h3 {
    color: var(--amarelo);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}
