/* FROTAS HERO */
.hero-frotas {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-frotas::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../images/banner-1.jpg) center / cover no-repeat;
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-frotas::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(33, 112, 179, 0) 0%,
        rgba(6, 43, 211, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 152, 53, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    margin-bottom: 20px;
    border: 1px solid var(--secondary-blue);
}

.hero-badge ion-icon {
    font-size: 18px;
}

.hero-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-about-title span {
    color: var(--secondary-blue);
}

.hero-about-text {
    font-size: var(--fs-5);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s both;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
    max-width: 635px;
    margin: 0 auto;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* FILTROS SECTION */
.filtros-section {
    padding: 30px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.filtros-container {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(33, 112, 179, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
}

.filtros-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-blue);
    border-radius: 12px 12px 0 0;
}

.filtros-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.filtro-item {
    position: relative;
}

.price-row {
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.filtro-select {
    width: 100%;
    padding: 12px 35px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23374151' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    box-sizing: border-box;
}

.filtro-select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(33, 112, 179, 0.1);
}

.filtro-select:hover {
    border-color: var(--primary-orange);
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    width: 100%;
}

.price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-blue);
    white-space: nowrap;
}

.price-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    margin: 0 10px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-orange);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(252, 152, 53, 0.3);
    transition: all 0.3s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(252, 152, 53, 0.4);
}

.price-value {
    font-size: 1.4rem;
    color: var(--secondary-blue);
    white-space: nowrap;
    background: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    width: 20%;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.filtro-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 5px;
}

.btn-limpar {
    padding: 10px;
    border: 1px solid #e2e8f0;
    background: var(--white);
    color: var(--text-medium);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-limpar:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-limpar ion-icon {
    font-size: 16px;
}

.btn-aplicar {
    padding: 8px 20px;
    background: var(--primary-orange);
    color: var(--white);
    border: 1px solid var(--primary-orange);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-aplicar:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.btn-aplicar ion-icon {
    font-size: 14px;
}

.resultados-info {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.resultados-info span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-blue);
    background: rgba(33, 112, 179, 0.05);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(33, 112, 179, 0.1);
}

/* Responsive para Filtros */
@media (max-width: 1024px) {
    .filtros-row {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .filtros-container {
        padding: 18px;
    }

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

    .filtro-select {
        min-height: 44px;
    }

    .price-filter {
        padding: 12px 16px;
        gap: 10px;
    }

    .price-label {
        font-size: 0.8rem;
    }

    .price-value {
        font-size: 0.8rem;
    }

    .btn-aplicar,
    .btn-limpar {
        min-height: 44px;
        min-width: 44px;
    }
}

@media (max-width: 480px) {
    .filtros-section {
        padding: 20px 0;
    }

    .filtros-container {
        padding: 15px;
        margin: 0 15px;
    }

    .filtros-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filtro-select {
        padding: 12px 35px 12px 16px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .price-filter {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .price-slider {
        width: 100%;
        margin: 0;
        height: 6px;
    }

    .price-slider::-webkit-slider-thumb {
        width: 22px;
        height: 22px;
    }

    .filtro-actions {
        gap: 10px;
        justify-content: center;
    }

    .btn-aplicar {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 48px;
        flex: 1;
        max-width: 150px;
    }

    .btn-limpar {
        padding: 12px;
        min-height: 48px;
        min-width: 48px;
    }

    .resultados-info {
        margin-top: 5px;
    }

    .resultados-info span {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

/* FROTA GRID */
.frota-grid {
    padding: 80px 0;
    background: var(--white);
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    padding: 12px;
    border: 2px solid #e2e8f0;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.view-btn ion-icon {
    font-size: 20px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
}

.vehicles-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vehicles-grid.list-view .vehicle-card {
    display: flex;
    flex-direction: row;
    max-width: none;
    height: auto;
}

.vehicles-grid.list-view .card-image {
    width: 300px;
    flex-shrink: 0;
    height: 200px;
}

.vehicles-grid.list-view .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicles-grid .vehicle-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.vehicles-grid .vehicle-card:nth-child(1) {
    animation-delay: 0.1s;
}
.vehicles-grid .vehicle-card:nth-child(2) {
    animation-delay: 0.2s;
}
.vehicles-grid .vehicle-card:nth-child(3) {
    animation-delay: 0.3s;
}
.vehicles-grid .vehicle-card:nth-child(4) {
    animation-delay: 0.4s;
}
.vehicles-grid .vehicle-card:nth-child(5) {
    animation-delay: 0.5s;
}
.vehicles-grid .vehicle-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-18);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(33, 112, 179, 0.12);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(33, 112, 179, 0.25);
    border-color: var(--primary-orange);
}

.card-badge.premium {
    background: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--neutral-light);
}

.card-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(33, 112, 179, 0.05);
    clip-path: polygon(0 100%, 100% 100%, 100% 20%, 0 60%);
    z-index: 2;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1.1) contrast(1.05);
}

.vehicle-card:hover .card-image img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.15) contrast(1.1);
}

.card-image .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(33, 112, 179, 0.15);
    z-index: 3;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-card:hover .card-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--white);
    color: var(--secondary-blue);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.card-content {
    padding: 24px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--secondary-blue);
    opacity: 0.3;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    font-family: var(--ff-nunito);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(33, 112, 179, 0.1);
    position: relative;
}

.card-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-blue);
    border-radius: 1px;
}

.card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.card-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-medium);
    padding: 6px 0;
    position: relative;
    transition: all 0.3s ease;
}

.card-specs span::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-orange);
    transition: height 0.3s ease;
}

.card-specs span:hover::before {
    height: 100%;
}

.card-specs span:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.card-specs ion-icon {
    font-size: 16px;
    color: var(--primary-orange);
    background: rgba(252, 152, 53, 0.1);
    padding: 4px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.card-specs span:hover ion-icon {
    background: var(--secondary-blue);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.card-price {
    text-align: center;
    margin-bottom: 16px;
    font-family: var(--ff-nunito);
    position: relative;
}

.card-price::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.card-price::after {
    content: "";
    position: absolute;
    top: -2px;
    right: 0;
    width: 30px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    display: block;
    margin-bottom: 4px;
}

.card-price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-blue);
    position: relative;
}

.card-price-value::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vehicle-card:hover .card-price-value::after {
    transform: scaleX(1);
}

.card-price-value small {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
}

.price-value {
    font-size: 1.4rem;
    color: var(--secondary-blue);
    white-space: nowrap;
    background: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.btn-reserve {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    border: 3px solid var(--primary-orange);
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(252, 152, 53, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.btn-reserve::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--secondary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-reserve:hover::before {
    width: 300px;
    height: 300px;
}

.btn-reserve:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(33, 112, 179, 0.4);
}

/* TARIFAS ESPECIAIS */
.tarifas-especiais {
    padding: 80px 0;
    background: #f8fafc;
}

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

.tarifa-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.tarifa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.tarifa-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tarifa-icon ion-icon {
    font-size: 32px;
    color: var(--white);
}

.tarifa-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tarifa-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
}

.desconto {
    background: var(--secondary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
}

.section-title.center {
    text-align: center;
    display: block;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* CONTACT CTA */
.contact-cta {
    padding: 80px 0;
    background: var(--secondary-blue);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

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

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

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

/* RESPONSIVE */

/* CONTAINER RESPONSIVO */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* MOBILE PEQUENO (até 480px) */
@media (max-width: 480px) {
    .hero-frotas {
        padding: 80px 0 50px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .frota-grid {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .grid-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-bottom: 30px;
    }

    .view-toggle {
        order: -1;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vehicle-card {
        margin: 0;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .card-specs {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 12px;
    }

    .card-specs span {
        font-size: 0.8rem;
    }

    .card-price-value {
        font-size: 1.5rem;
    }

    .btn-reserve {
        padding: 12px 16px;
        font-size: 0.8rem;
        min-height: 48px;
    }

    .tarifas-especiais {
        padding: 60px 0;
    }

    .tarifas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tarifa-card {
        padding: 30px 20px;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        min-height: 48px;
    }
}

/* MOBILE MÉDIO (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-frotas {
        padding: 100px 0 60px;
    }

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

    .frota-grid {
        padding: 70px 0;
    }

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

    .grid-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-image {
        height: 200px;
    }

    .card-specs {
        grid-template-columns: 1fr 1fr;
    }

    .tarifas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-buttons {
        gap: 15px;
    }
}

/* TABLET (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-frotas {
        padding: 120px 0 80px;
    }

    .frota-grid {
        padding: 70px 0;
    }

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

    .card-image {
        height: 220px;
    }

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

/* DESKTOP PEQUENO (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .card-image {
        height: 240px;
    }
}

/* DESKTOP GRANDE (acima de 1200px) */
@media (min-width: 1201px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .card-image {
        height: 260px;
    }
}

/* AJUSTES PARA LISTA VIEW */
@media (max-width: 768px) {
    .vehicles-grid.list-view .vehicle-card {
        flex-direction: column;
    }

    .vehicles-grid.list-view .card-image {
        width: 100%;
        height: 200px;
    }
}

/* MELHORIAS GERAIS DE USABILIDADE */
@media (max-width: 768px) {
    .view-btn {
        padding: 10px;
        min-height: 44px;
        min-width: 44px;
    }

    .btn-quick-view {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .card-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}

.pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 2rem 0;
}
.pagination li > a {
    background: var(--primary-orange);
    padding: 5px 10px;
    color: #fff;
    border-radius: 6px;
}
.pagination li.active > span {
    padding: 5px 10px;
    color: #fff;
    border-radius: 6px;
    background: var(--orange-light);
}

.pagination li.disabled > span {
    padding: 5px 10px;
    color: #fff;
    border-radius: 6px;
    background: var(--gray-light);
}
