/* ==========================================
   Estilos Gerais - Acessível POA
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-azul: #1e5a96;
    --cor-azul-claro: #2d7bb8;
    --cor-branco: #ffffff;
    --cor-cinza-claro: #f5f5f5;
    --cor-cinza: #e0e0e0;
    --cor-texto: #333333;
    --cor-destaque: #ff6b35;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-branco);
}

/* ==========================================
   Cabeçalho / Header
   ========================================== */

header {
    background: linear-gradient(135deg, var(--cor-azul) 0%, var(--cor-azul-claro) 100%);
    color: var(--cor-branco);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--cor-branco);
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.4rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--cor-branco);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--cor-branco);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* ==========================================
   Seção Hero
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--cor-azul) 0%, var(--cor-azul-claro) 100%);
    color: var(--cor-branco);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: var(--cor-destaque);
    color: var(--cor-branco);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   Seção Sobre
   ========================================== */

.about {
    padding: 4rem 2rem;
    background-color: var(--cor-cinza-claro);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--cor-azul);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.about-text h2 {
    color: var(--cor-azul);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   Seção Serviços
   ========================================== */

.services {
    padding: 4rem 2rem;
    background-color: var(--cor-branco);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--cor-cinza-claro);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid var(--cor-azul);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(30, 90, 150, 0.2);
}

.service-card img {
    width: 200px;
    /*height: 80px;*/
    margin-bottom: 1rem;
    object-fit: contain;
}

.service-card h3 {
    color: var(--cor-azul);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--cor-texto);
    line-height: 1.6;
}

/* ==========================================
   Seção Frota
   ========================================== */

.frota {
    padding: 4rem 2rem;
    background-color: var(--cor-cinza-claro);
}

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

.frota-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.frota-text h2 {
    color: var(--cor-azul);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.frota-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cor-branco);
    font-weight: bold;
    font-size: 1.3rem;
}


.frota-text .features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cor-azul);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ==========================================
   Seção App
   ========================================== */

.app {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--cor-azul) 0%, var(--cor-azul-claro) 100%);
    color: var(--cor-branco);
}

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

.app-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.app-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-app {
    display: inline-block;
    background-color: var(--cor-branco);
    color: var(--cor-azul);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--cor-branco);
}

.btn-app:hover {
    background-color: transparent;
    color: var(--cor-branco);
}

.app-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* ==========================================
   Seção Contato
   ========================================== */

.contact {
    padding: 4rem 2rem;
    background-color: var(--cor-cinza-claro);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--cor-branco);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--cor-azul);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item strong {
    color: var(--cor-azul);
    min-width: 100px;
}

.contact-form {
    background: var(--cor-branco);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--cor-azul);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cor-azul);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--cor-cinza);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-azul);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group button {
    background-color: var(--cor-azul);
    color: var(--cor-branco);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

.form-group button:hover {
    background-color: var(--cor-azul-claro);
    transform: translateY(-2px);
}

/* ==========================================
   Botão Flutuante WhatsApp
   ========================================== */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* ==========================================
   Rodapé
   ========================================== */

footer {
    background: var(--cor-azul);
    color: var(--cor-branco);
    padding: 2rem;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

/* ==========================================
   Responsividade
   ========================================== */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .header-container {
        justify-content: space-between;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--cor-azul) 0%, var(--cor-azul-claro) 100%);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        text-transform: uppercase;
    }

    .nav-menu.active {
        max-height: 500px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        text-align: left;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .frota-content,
    .app-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-text h2,
    .frota-text h2,
    .app-text h2 {
        font-size: 1.5rem;
    }

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

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

    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem 0;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2.5px;
    }

    .nav-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .about,
    .services,
    .frota,
    .app,
    .contact {
        padding: 2rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-list li {
        font-size: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}