/* Reset e Configurações Globais - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 30%, #e9ecef 60%, #343a40 100%);
    min-height: 100vh;
}

:root {
    /* Cores Principais */
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-orange: #FFA500;

    /* Cores Complementares */
    --dark-gray: #333333;
    --light-gray: #ffffff;
    --dark-orange: #CC8400;
    --medium-gray: #303030;
    --border-gray: #E0E0E0;

    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;

    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Container Universal - Mobile First */
.container {
    width: 100vw;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Previne elementos que causam overflow */
img,
video,
iframe,
object,
embed {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

/* Header Mobile - Fixo e Transparente */
.header {
    background: rgba(255, 255, 255, 0.103);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 1000;
    padding: 15px 20px;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-small {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.0rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.brand-title .brand-black {
    color: var(--primary-black);
}

.brand-title .brand-orange {
    color: var(--primary-orange);
}

/* Menu Hambúrguer */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 20px;
    height: 15px;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    color: #030303;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

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

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

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

/* Menu Mobile Oculto */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: right var(--transition-medium);
    padding: 80px 20px 20px;
    box-sizing: border-box;
}

.nav.active {
    right: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color var(--transition-fast);
}

.nav-list a:hover {
    color: var(--primary-orange);
}

/* Hero Section - Mobile First */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    width: 100vw;
    box-sizing: border-box;
    background: linear-gradient(135deg, var(--primary-white) 0%, #f8f9fa 100%);
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 40px;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
    line-height: 1.5;
    word-wrap: break-word;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Botões Mobile */
.btn {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1rem;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--primary-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.highlight {
    color: var(--primary-orange);
    font-weight: 900;
}

/* Seções Gerais - Mobile First */
.services,
.fleet,
.about,
.testimonials,
.orcamento {
    padding: 60px 20px;
    width: 100vw;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
    word-wrap: break-word;
}

.section-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    word-wrap: break-word;
}

/* Serviços - Mobile Grid */
.services {
    background: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.service-card {
    background: var(--primary-white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border: 1px solid var(--border-gray);
    width: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-orange);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 12px;
    word-wrap: break-word;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.5;
    word-wrap: break-word;
    font-size: 0.95rem;
}

/* Frota - Mobile */
.fleet {
    background: rgba(248, 249, 250, 0.9);
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
    width: 100%;
}

.truck-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-fast);
    width: 100%;
    box-sizing: border-box;
}

.truck-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.truck-image {
    height: 260px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.truck-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.truck-info {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.truck-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 15px;
    word-wrap: break-word;
}

.truck-specs {
    margin-bottom: 15px;
}

.spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-gray);
    flex-wrap: wrap;
}

.spec:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.spec-label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.truck-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: var(--light-gray);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.fleet-commitment {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.fleet-commitment h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 12px;
}

.fleet-commitment p {
    color: var(--medium-gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Sobre Nós - Mobile */
.about {
    background: rgba(255, 255, 255, 0.9);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

.about-story {
    margin-bottom: 30px;
}

.about-story h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 12px;
    word-wrap: break-word;
}

.about-story p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    word-wrap: break-word;
    font-size: 1.10rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

.value {
    text-align: center;
    padding: 20px 15px;
    border-radius: 12px;
    background: var(--light-gray);
    transition: all var(--transition-fast);
    width: 100%;
    box-sizing: border-box;
}

.value:hover {
    background: var(--primary-orange);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.value h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.value p {
    font-size: 0.9rem;
    opacity: 0.8;
    word-wrap: break-word;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Depoimentos - Mobile */
.testimonials {
    background: rgba(248, 249, 250, 0.9);
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto 30px;
    box-sizing: border-box;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 25px 20px;
    background: var(--primary-white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    width: 100%;
    box-sizing: border-box;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.5;
    word-wrap: break-word;
}

.testimonial-author strong {
    font-family: var(--font-heading);
    color: var(--primary-black);
    font-size: 1rem;
}

.testimonial-author span {
    display: block;
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-top: 5px;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-orange);
    color: var(--primary-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--dark-orange);
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--primary-orange);
}

/* ===== FORMULÁRIO DE ORÇAMENTO - NOVO DESIGN ===== */
.orcamento {
    background: rgba(233, 236, 239, 0.9);
    padding: 40px 20px;
}

.orcamento-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--primary-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

.orcamento-header {
    text-align: center;
    padding: 30px 20px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 4px solid var(--primary-orange);
}

.orcamento-logo {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orcamento-logo-img {
    width: 70px;
    height: auto;
    max-width: 100%;
}

.orcamento-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0;
    word-wrap: break-word;
}

.orcamento-form {
    padding: 30px 25px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Seções do Formulário */
.form-section {
    margin-bottom: 35px;
    padding: 25px 20px;
    background: #fafbfc;
    border-radius: 12px;
    border-left: 5px solid var(--primary-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.form-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word;
}

.section-icon {
    font-size: 1.3rem;
    color: var(--primary-orange);
}

/* Layout Responsivo de Duas Colunas */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    width: 100%;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #444444;
    margin-bottom: 8px;
    font-size: 0.9rem;
    word-wrap: break-word;
}

/* Campos de Input */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--primary-white);
    box-sizing: border-box;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.1);
    transform: translateY(-1px);
}

.form-group input[readonly] {
    background: #f8f9fa;
    color: #666666;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* CEP Input Group */
.cep-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.cep-input-group input {
    flex: 1;
    min-width: 0;
}

.btn-buscar-cep {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c00 100%);
    color: var(--primary-white);
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.btn-buscar-cep:hover {
    background: linear-gradient(135deg, #ff8c00 0%, var(--dark-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
}

.btn-buscar-cep:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Radio Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    width: 100%;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--primary-white);
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.radio-option:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 165, 0, 0.05);
    transform: translateY(-1px);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--primary-orange);
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked+span {
    color: var(--primary-orange);
    font-weight: 600;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-orange);
    background: rgba(255, 165, 0, 0.1);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--primary-white);
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payment-option:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 165, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.2);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--primary-orange);
    flex-shrink: 0;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.payment-icon {
    font-size: 1.2rem;
}

.payment-text {
    font-weight: 500;
    color: #333;
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-orange);
    background: rgba(255, 165, 0, 0.1);
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.3);
}

.payment-option:has(input[type="radio"]:checked) .payment-text {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Observação */
.observacao {
    font-size: 0.85rem;
    color: #666666;
    font-style: italic;
    margin-top: 8px;
    padding: 10px 12px;
    background: rgba(255, 165, 0, 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--primary-orange);
    word-wrap: break-word;
    font-family: 'Inter', sans-serif;
}

/* Botão de Orçamento */
.btn-orcamento {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c00 100%);
    color: var(--primary-white);
    border: none;
    border-radius: 12px;
    padding: 18px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-orcamento:hover {
    background: linear-gradient(135deg, #ff8c00 0%, var(--dark-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.btn-orcamento:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Instagram Link */
.instagram-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    box-sizing: border-box;
}

.instagram-link p {
    color: #666666;
    font-size: 0.8rem;
    word-wrap: break-word;
    font-family: 'Inter', sans-serif;
}

.instagram-link a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.instagram-link a:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

/* Footer - Mobile */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 40px 20px 20px;
    width: 100vw;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    word-wrap: break-word;
}

.footer-section h3 {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--primary-white);
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 10px;
    word-wrap: break-word;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-social {
    margin-top: 15px;
}

.social-link {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--dark-gray);
    color: var(--light-gray);
    word-wrap: break-word;
    font-size: 0.8rem;
}

/* === WhatsApp Card com Digitação Animada === */
.whatsapp-card {
    position: fixed;
    bottom: 95px;
    right: 20px;
    background-color: #019208e5;
    color: #fcfcfc;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 0.95rem;
    z-index: 998;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.whatsapp-card.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.cursor {
    display: inline-block;
    width: 1px;
    background: #333;
    margin-left: 4px;
    animation: blink 0.8s infinite;
    height: 1em;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

/* === Botão Flutuante do WhatsApp === */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Overlay para Menu Mobile */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Estados de foco para acessibilidade */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Previne zoom em inputs no iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"] {
        font-size: 16px;
    }
}

/* Media Queries para diferentes tamanhos de tela */
@media (min-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .radio-group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .radio-option {
        flex: 1;
        min-width: 140px;
    }

    /* Formulário - Duas colunas em telas maiores */
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

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

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    /* Formulário - Layout otimizado para tablets */
    .orcamento-form {
        padding: 40px 35px;
    }

    .form-section {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .services,
    .fleet,
    .about,
    .testimonials,
    .orcamento {
        padding: 80px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

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

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

    .about-content {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Formulário - Layout desktop otimizado */
    .orcamento-content {
        max-width: 1000px;
    }

    .orcamento-form {
        padding: 50px 40px;
    }

    .form-section {
        padding: 35px 30px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Correções específicas para dispositivos móveis */
@media (max-width: 767px) {

    /* Garante que nenhum elemento ultrapasse a largura da tela */
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Ajustes específicos para elementos que podem causar overflow */
    .hero-content,
    .orcamento-content,
    .service-card,
    .truck-card,
    .testimonial {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Garante que imagens não ultrapassem o container */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Ajustes para textos longos */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Formulário - Mobile específico */
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .radio-group {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 576px) {
    .brand-title {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 3.1rem;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}
@media (max-width: 420px) {
    .brand-title {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 3.1rem;
    }
}

@media (max-width: 360px) {
    .brand-title {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    /* Formulário - Telas muito pequenas */
    .orcamento-form {
        padding: 20px 15px;
    }

    .form-section {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .orcamento-header h2 {
        font-size: 1.4rem;
    }
}

.whatsapp-float {
    width: 60px;
    height: 60px;
}

.whatsapp-float img {
    width: 60px;
    height: auto;
}