/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
    /**
   * colors
   */

    --primary-orange: #2170b3;
    --secondary-blue: #fc9835;
    --orange-light: #4a8bc2;
    --orange-lighter: #e8f2fb;
    --blue-light: #fdb366;
    --blue-lighter: #fef4e8;
    --neutral-light: #f8f9fa;
    --neutral-lighter: #ffffff;
    --neutral-dark: #003399;
    --neutral-medium: #6c757d;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --warning-yellow: #ffc107;
    --info-cyan: #17a2b8;
    --text-dark: #212529;
    --text-medium: #495057;
    --text-light: #6c757d;
    --border-light: #dee2e6;
    --shadow-color: rgba(33, 112, 179, 0.1);
    --white: #ffffff;

    /* Removed gradient - using solid colors instead */

    /**
   * typography
   */

    --ff-nunito: "Onest", sans-serif;
    --ff-open-sans: "Open Sans", sans-serif;

    --fs-1: 2.125rem;
    --fs-2: 1.875rem;
    --fs-3: 1.5rem;
    --fs-4: 1.375rem;
    --fs-5: 1.125rem;
    --fs-6: 0.875rem;
    --fs-7: 0.625rem;

    --fw-400: 400;
    --fw-600: 600;

    /**
   * transition
   */

    --transition: 0.5s ease;

    /**
   * spacing
   */

    --section-padding: 50px;

    /**
   * radius
   */

    --radius-10: 10px;
    --radius-14: 14px;
    --radius-18: 18px;

    /**
   * shadow
   */

    --shadow-1: 3px 3px 9px hsla(240, 14%, 69%, 0.2);
    --shadow-2: 3px 3px 9px hsla(204, 92%, 59%, 0.3);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a,
img,
span,
label,
input,
button,
ion-icon {
    display: block;
}

button,
input {
    background: none;
    border: none;
    font: inherit;
}

button {
    cursor: pointer;
}

input {
    width: 100%;
}

ion-icon {
    pointer-events: none;
}

html {
    font-family: var(--ff-open-sans);
    color: var(--eerie-black);
    font-size: 1rem;
    line-height: 1.5;
    scroll-behavior: smooth;
}

body {
    background: var(--neutral-light);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 15px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: hsla(219, 14%, 60%, 0.3);
    border: 2px solid var(--white);
}

::-webkit-scrollbar-thumb:hover {
    background: hsla(219, 14%, 60%, 0.5);
}

/*-----------------------------------*\
  #LOADING
\*-----------------------------------*/

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--neutral-dark) 0%,
        var(--primary-orange) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--secondary-blue);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    color: var(--white);
    margin-bottom: 10px;
}

.loader-subtext {
    font-size: var(--fs-6);
    color: rgba(255, 255, 255, 0.8);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
    padding-inline: 15px;
}

button,
a {
    transition: var(--transition);
}

.btn {
    position: relative;
    background: var(--background, var(--primary-orange));
    color: var(--color, var(--white));
    min-width: var(--width, 40px);
    min-height: var(--height, 40px);
    padding: 5px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-14);
    font-family: var(--ff-nunito);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    overflow: hidden;
    line-height: 5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn ion-icon {
    font-size: 22px;
    --ionicon-stroke-width: 40px;
}

.btn:is(:hover, :focus) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
    background: var(--secondary-blue);
}

.section {
    padding-block: var(--section-padding);
}

.h1,
.h2,
.h3 {
    color: var(--text-dark);
    font-family: var(--ff-nunito);
    line-height: 1.4;
}

.w-135 {
    width: 135px;
}

.h1 {
    font-size: var(--fs-1);
}

.h2,
.h3 {
    font-weight: var(--fw-400);
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-4);
}

.w-100 {
    width: 100%;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-contact {
    display: none;
}

.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--transition);
    z-index: 4;
    border-bottom: 1px solid #e4e4e4;
}

.header.active {
    box-shadow: 0 2px 20px var(--shadow-color);
    border-bottom-color: var(--secondary-blue);
}

.header .container {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    margin-top: 15px;
}

.logo {
    margin-right: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions .btn span {
    display: none;
}

.user-btn {
    --color: var(--text-dark);
    --background: var(--orange-lighter);
    box-shadow: 0 2px 8px var(--shadow-color);
    border: 2px solid var(--primary-orange);
}

.nav-toggle-btn span {
    background: var(--secondary-blue);
    width: 22px;
    height: 2px;
    border-radius: 2px;
    margin-block: 8px;
    transform-origin: right;
    transition: var(--transition);
}

.nav-toggle-btn span.two {
    transform: scaleX(0.7);
}

.nav-toggle-btn span.three {
    transform: scaleX(0.4);
}

.nav-toggle-btn:is(:hover, :focus) span {
    background: var(--primary-orange);
}

.nav-toggle-btn.active span {
    transform: scaleX(1);
    background: var(--primary-orange);
}

.navbar {
    background: var(--white);
    position: fixed;
    top: 70px;
    bottom: 0;
    right: -260px;
    max-width: 260px;
    width: 100%;
    padding: 20px 25px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: -4px 0 20px var(--shadow-color);
    visibility: hidden;
    transition: 0.25s cubic-bezier(0.51, 0.03, 0.64, 0.28);
}

.navbar.active {
    visibility: visible;
    transform: translateX(-100%);
    transition: 0.5s cubic-bezier(0.33, 0.85, 0.56, 1.02);
}

.navbar-link {
    color: var(--text-dark);
    font-family: var(--ff-nunito);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    margin-bottom: 6px;
    position: relative;
    transition: color 0.2s ease;
}

.navbar-link:is(:hover, :focus) {
    color: var(--secondary-blue);
}

.overlay {
    position: fixed;
    top: 70px;
    background: rgba(33, 112, 179, 0.8);
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.overlay.active {
    opacity: 0.7;
    pointer-events: all;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
    padding-top: 120px;
}

.hero-clean {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 80px 20px;
}

.hero-clean::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>')
        repeat;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

.hero-clean-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-clean-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.hero-clean-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--secondary-blue);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bounceIn 1s ease-out 0.6s both;
}

.hero-clean-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--primary-orange);
    color: var(--white);
}

.hero-clean-cta ion-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-clean-cta:hover ion-icon {
    transform: translateX(4px);
}

.hero-clean-decorative {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-clean-decorative:nth-child(1) {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-clean-decorative:nth-child(2) {
    bottom: 10%;
    right: -10%;
    animation-delay: 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .hero-clean {
        min-height: 80vh;
        padding: 60px 15px;
    }

    .hero-clean-decorative {
        width: 200px;
        height: 200px;
    }
}

.hero-title {
    max-width: 16ch;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out;
}
.hero-title.pages {
    max-width: 15ch !important;
}
.hero-title span {
    display: inline;
    color: var(--primary-orange);
    font-weight: inherit; /* se não quiser mais bold */
}
.hero-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s both;
}

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

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

.hero-text {
    color: #2170b3;
    line-height: 1.4;
    margin-bottom: 35px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-banner {
    display: none;
}

.hero-form {
    background: var(--white);
    box-shadow: 0 8px 32px var(--shadow-color);
    border-radius: var(--radius-18);
    font-family: var(--ff-nunito);
}

.input-wrapper {
    padding: 15px 20px;
}

.input-wrapper:not(:last-of-type) {
    border-bottom: 2px solid var(--orange-lighter);
}

.input-label {
    color: var(--primary-orange);
    font-size: var(--fs-6);
    margin-bottom: 10px;
    font-weight: 600;
}

.input-field {
    color: var(--text-dark);
    outline: 2px solid transparent;
    outline-offset: 5px;
    border-radius: 8px;
    padding: 8px 12px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.input-field:focus {
    outline-color: var(--primary-orange);
    border-color: var(--primary-orange);
    background: var(--orange-lighter);
}

.input-field::placeholder {
    color: var(--text-light);
}

.hero-form .btn {
    --width: calc(100% - 40px);
    --height: 50px;
    margin: 20px;
    text-transform: uppercase;
}

/*-----------------------------------*\
  #FEATURED CAR
\*-----------------------------------*/

.featured-car .container {
    max-width: 1400px;
    padding: 0 40px;
}

.featured-car .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    font-family: var(--ff-nunito);
}

.featured-car .section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 12%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.featured-car .title-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

.toggle-btn {
    padding: 8px 12px;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: var(--radius-10);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-light);
}

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

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

.toggle-btn ion-icon {
    font-size: 18px;
}

.featured-car-list.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-car-list.list-view .featured-car-card {
    display: flex;
    flex-direction: row;
    max-width: none;
    height: auto;
}

.featured-car-list.list-view .card-banner {
    width: 300px;
    flex-shrink: 0;
}

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

.featured-car-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 25px;
    background: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.featured-car-link:is(:hover, :focus)::before {
    width: 300px;
    height: 300px;
}

.featured-car-link:is(:hover, :focus) {
    border-color: var(--secondary-blue);
    transform: translateY(-4px) scale(1.05);
}

.featured-car-link ion-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.featured-car-link:is(:hover, :focus) ion-icon {
    transform: rotate(360deg);
}

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

.featured-car-list li {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.featured-car-list li:nth-child(1) {
    animation-delay: 0.1s;
}
.featured-car-list li:nth-child(2) {
    animation-delay: 0.2s;
}
.featured-car-list li:nth-child(3) {
    animation-delay: 0.3s;
}
.featured-car-list li:nth-child(4) {
    animation-delay: 0.4s;
}
.featured-car-list li:nth-child(5) {
    animation-delay: 0.5s;
}
.featured-car-list li:nth-child(6) {
    animation-delay: 0.6s;
}

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

.featured-car-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;
}

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

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

.featured-car-card .card-banner::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;
}

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

.featured-car-card:hover .card-banner > img {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(1.15) contrast(1.1);
}

.featured-car-card .card-content {
    padding: 24px;
    position: relative;
}

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

.featured-car-card .card-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(33, 112, 179, 0.1);
    position: relative;
}

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

.featured-car-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    font-family: var(--ff-nunito);
}

.featured-car-card .card-title > a {
    color: inherit;
    transition: color 0.3s ease;
}

.featured-car-card .card-title > a:hover {
    color: var(--primary-orange);
}

.featured-car-card .year {
    background: var(--white);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    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);
}

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

.featured-car-card .card-list-item {
    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;
}

.featured-car-card .card-list-item:hover::before {
    height: 100%;
}

.featured-car-card .card-list-item:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}

.featured-car-card .card-list-item 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;
}

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

.featured-car-card .card-item-text {
    color: var(--text-medium);
    font-size: var(--fs-6);
}

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

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

.featured-car-card .price-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 8px;
    padding: 4px;
}

.featured-car-card .price-tab {
    flex: 1;
    padding: 8px 4px;
    text-align: center;
    font-size: var(--fs-7);
    font-weight: var(--fw-600);
    color: var(--text-medium);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-car-card .price-tab.active {
    background: var(--primary-orange);
    color: var(--white);
}

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

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

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

.featured-car-card:hover .card-price strong::after {
    transform: scaleX(1);
}

.featured-car-card .card-price {
    color: var(--text-medium);
    font-size: 0.875rem;
}

.featured-car-card .price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    font-family: var(--ff-nunito);
}

.featured-car-card .price-period {
    font-size: var(--fs-7);
    color: var(--text-medium);
    margin-top: 2px;
}

.featured-car-card .card-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.featured-car-card .btn-pricing {
    flex: 1;
    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;
}

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

.featured-car-card .btn-pricing:hover::before {
    width: 400px;
    height: 400px;
}

.featured-car-card .btn-pricing:hover {
    border-color: var(--orange-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(33, 112, 179, 0.4);
}

.featured-car-card .btn-pricing ion-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.featured-car-card .btn-pricing:hover ion-icon {
    transform: rotate(360deg);
}

.featured-car-card .btn {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--secondary-blue);
    padding: 14px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.featured-car-card .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-blue);
    transition: width 0.4s ease;
    z-index: -1;
}

.featured-car-card .btn:hover::before {
    width: 100%;
}

.featured-car-card .btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 112, 179, 0.3);
}

/* POPUP STYLES */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.popup-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 750px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    padding: 30px 30px 20px;
    background: var(--primary-orange);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.popup-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-blue);
}

.popup-title {
    font-size: var(--fs-3);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: var(--ff-nunito);
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.popup-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(85vh - 120px);
}

.car-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--orange-lighter);
    border-radius: 20px;
    border: 2px solid rgba(33, 112, 179, 0.1);
    position: relative;
    overflow: hidden;
}

.car-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-orange);
}

.car-image {
    width: 90px;
    height: 70px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-image:hover img {
    transform: scale(1.05);
}

.car-details h4 {
    font-size: var(--fs-4);
    font-weight: 700;
    color: var(--neutral-dark);
    margin: 0 0 8px 0;
    font-family: var(--ff-nunito);
}

.car-details span {
    background: var(--secondary-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: var(--fs-7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-item {
    background: var(--white);
    border: 2px solid var(--orange-lighter);
    border-radius: 18px;
    padding: 20px 15px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(33, 112, 179, 0.1);
    transition: left 0.6s ease;
}

.pricing-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(33, 112, 179, 0.2);
}

.pricing-item:hover::before {
    left: 100%;
}

.pricing-icon {
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 8px;
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.pricing-item:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-info h5 {
    font-size: var(--fs-5);
    font-weight: 700;
    color: var(--secondary-blue);
    margin: 0;
    font-family: var(--ff-nunito);
    border-bottom: 2px solid var(--orange-lighter);
    padding-bottom: 8px;
}

.pricing-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(33, 112, 179, 0.1);
}

.pricing-detail:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: var(--fs-6);
    font-weight: 600;
    color: var(--primary-orange);
    font-family: var(--ff-nunito);
}

.pricing-value {
    font-size: var(--fs-6);
    font-weight: 700;
    color: var(--primary-orange);
    font-family: var(--ff-nunito);
}

.pricing-value.consult {
    color: var(--primary-orange);
    font-style: italic;
}

.pricing-info .price {
    font-size: var(--fs-3);
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 6px;
    font-family: var(--ff-nunito);
}

.pricing-info small {
    font-size: var(--fs-7);
    color: var(--primary-orange);
    font-weight: 500;
}

.popup-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-reserve,
.btn-contact {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 15px;
    font-size: var(--fs-6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-family: var(--ff-nunito);
}

.btn-reserve::before,
.btn-contact::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

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

.btn-reserve {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(33, 112, 179, 0.3);
}

.btn-reserve:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(33, 112, 179, 0.4);
}

.btn-contact {
    background: var(--secondary-blue);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(252, 152, 53, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(252, 152, 53, 0.4);
}

/* Responsive design for popup */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .car-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .popup-actions {
        flex-direction: column;
        gap: 12px;
    }

    .popup-content {
        width: 95%;
        margin: 10px;
        border-radius: 20px;
    }

    .popup-header,
    .popup-body {
        padding: 25px 20px;
    }

    .popup-close {
        min-height: 44px;
        min-width: 44px;
    }

    .btn-reserve,
    .btn-contact {
        min-height: 48px;
        padding: 16px 24px;
    }
}

/* MELHORIAS GERAIS DE USABILIDADE */
@media (max-width: 768px) {
    /* Botões com área de toque adequada */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    .toggle-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .featured-car-link {
        min-height: 44px;
        padding: 10px 20px;
    }

    .social-bar-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Melhor espaçamento entre elementos clicáveis */
    .featured-car-card {
        margin-bottom: 10px;
    }

    .get-start-card {
        margin-bottom: 10px;
    }

    .why-choose-card {
        margin-bottom: 10px;
    }

    /* Ajustes no formulário hero */
    .input-field {
        min-height: 44px;
    }
}

/*-----------------------------------*\
  #GET START
\*-----------------------------------*/

.get-start {
    background: #fc9835;
    position: relative;
}

.get-start .section-title {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    color: var(--white);
    font-size: var(--fs-2);
    font-weight: 700;
}

.get-start .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.get-start-list {
    display: grid;
    gap: 30px;
}

.get-start-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-18);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.get-start-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent, var(--primary-orange));
    transition: all 0.3s ease;
}

.get-start-card:hover {
    border-color: var(--card-accent, var(--primary-orange));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.get-start-card .card-icon {
    color: var(--card-accent, var(--primary-orange));
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.get-start-card:hover .card-icon {
    transform: scale(1.1);
}

.get-start-card .card-icon ion-icon {
    font-size: 30px;
    --ionicon-stroke-width: 45px;
}

.get-start-card:nth-child(1) {
    --card-accent: var(--primary-orange);
}

.get-start-card:nth-child(2) {
    --card-accent: var(--secondary-blue);
}

.get-start-card:nth-child(3) {
    --card-accent: var(--primary-orange);
}

.get-start-card:nth-child(4) {
    --card-accent: var(--secondary-blue);
}

.get-start-card .card-title {
    color: var(--text-dark);
    font-family: var(--ff-nunito);
    font-weight: var(--fw-600);
    margin-bottom: 15px;
    font-size: var(--fs-4);
}

.get-start-card .card-text {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
    text-align: left;
}

.get-start-card .card-link {
    color: var(--card-accent, var(--primary-orange));
    font-weight: 600;
    padding: 5px 20px;
    border: 2px solid var(--card-accent, var(--primary-orange));
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
    align-self: flex-start;
}

.get-start-card .card-link:is(:hover, :focus) {
    background: var(--card-accent, var(--primary-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*-----------------------------------*\
  #SOCIAL BAR
\*-----------------------------------*/

.social-bar {
    background: var(--primary-orange);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.social-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.social-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.social-bar-text {
    color: var(--white);
    font-family: var(--ff-nunito);
    font-weight: var(--fw-600);
    font-size: var(--fs-6);
    margin-right: 20px;
}

.social-bar-links {
    display: flex;
    gap: 20px;
}

.social-bar-link {
    color: var(--white);
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-bar-link:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-3px) scale(1.1);
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .section-title {
    margin-bottom: 40px;
    text-align: center;
    font-size: var(--fs-2);
    font-weight: 700;
    color: var(--neutral-dark);
    position: relative;
}

.blog .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-18);
    border: 2px solid var(--border-light);
    box-shadow: 0 4px 16px var(--shadow-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--secondary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-color);
}

.blog-card .card-banner {
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
}

.blog-card .card-banner a:first-child {
    height: 100%;
}

.blog-card .card-banner img {
    height: 100%;
    object-fit: cover;
}

.blog-card .card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    --height: 30px;
    --width: 92px;
}

.blog-card .card-content {
    padding: 20px;
}

.blog-card .card-title {
    margin-bottom: 20px;
}

.blog-card .card-title > a {
    color: inherit;
}

.blog-card .card-title > a:is(:hover, :focus) {
    color: var(--primary-orange);
}

.blog-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card :is(.publish-date, .comments) {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--fs-6);
    color: var(--text-light);
}

.blog-card :is(.publish-date, .comments) ion-icon {
    font-size: 15px;
    --ionicon-stroke-width: 50px;
}

.blog .has-scrollbar {
    display: flex;
    gap: 20px;
    scroll-snap-type: inline mandatory;
    overflow-x: auto;
    padding-bottom: 20px;
}

.blog .has-scrollbar > li {
    flex-shrink: 0;
    max-width: 330px;
    width: 100%;
    scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar-track {
    background: var(--neutral-light);
    outline: 2px solid var(--primary-orange);
    border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
    border-color: var(--neutral-light);
    background: var(--primary-orange);
    border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

.has-scrollbar::-webkit-scrollbar-button {
    width: calc(25% - 40px);
}

/*-----------------------------------*\
  #WHY CHOOSE US
\*-----------------------------------*/

.why-choose {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--orange-lighter);
    z-index: -1;
}

.why-choose .section-title {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    font-size: var(--fs-2);
    font-weight: 700;
    color: var(--primary-orange);
}

.why-choose .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.why-choose-list {
    display: grid;
    gap: 25px;
}

.why-choose-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-14);
    border-left: 5px solid var(--primary-orange);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-choose-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-left-width: 8px;
}

.why-choose-card .card-icon {
    background: var(--secondary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
}

.why-choose-card .card-icon ion-icon {
    font-size: 28px;
    --ionicon-stroke-width: 50px;
}

.why-choose-card .card-content {
    flex-grow: 1;
}

.why-choose-card .card-title {
    color: var(--text-dark);
    font-family: var(--ff-nunito);
    font-weight: var(--fw-600);
    margin-bottom: 8px;
    font-size: var(--fs-5);
}

.why-choose-card .card-text {
    color: var(--text-medium);
    line-height: 1.5;
    font-size: var(--fs-6);
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
    background: var(--primary-orange);
    color: var(--white);
}

.footer a {
    color: inherit;
}

.footer-top {
    padding-block: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 50px;
}

.footer-top .logo {
    margin-bottom: 20px;
}

.footer-text {
    font-size: var(--fs-6);
    line-height: 1.8;
    color: var(--white);
}

.footer-list {
    font-family: var(--ff-nunito);
}

.footer-list:not(:last-of-type) {
    width: 50%;
}

.footer-list:last-of-type {
    width: 100%;
    column-count: 2;
}

.footer-list-title {
    color: var(--white);
    font-weight: var(--fw-600);
    margin-bottom: 8px;
}

.footer-link {
    font-size: var(--fs-6);
    padding-block: 6px;
    color: var(--neutral-medium);
    transition: all 0.3s ease;
}

.footer-link:is(:hover, :focus) {
    color: #d4e4ee;
    transform: translateX(4px);
}

.footer-list:last-child > li:first-child {
    column-span: all;
}

.footer-bottom {
    background: var(--white);
    border-top: 4px solid var(--neutral-dark);
    padding: 10px;
    color: #494949;
}

.social-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.social-link {
    font-size: 20px;
    color: #494949;
    transition: all 0.3s ease;
}

.social-link ion-icon {
    --ionicon-stroke-width: 40px;
}

.social-link:is(:hover, :focus) {
    color: #494949;
    transform: translateY(-2px) scale(1.1);
}

.copyright {
    font-size: var(--fs-6);
    color: #494949;
}

.copyright > a {
    display: inline-block;
    color: var(--secondary-blue);
}

.copyright > a:is(:hover, :focus) {
    color: var(--secondary-blue);
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for mobile screens
 */

/* MOBILE PEQUENO (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .featured-car .container {
        padding: 0 15px;
    }

    /* HERO */
    .hero {
        padding-top: 100px;
        min-height: 70vh;
    }

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

    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-form {
        margin-top: 30px;
        height: 25rem;
    }

    .input-wrapper {
        padding: 12px 16px;
    }

    .input-field {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .hero-form .btn {
        --height: 48px;
        font-size: 0.9rem;
    }

    /* FEATURED CARS */
    .featured-car .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .featured-car .title-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .view-toggle {
        order: -1;
    }

    .toggle-btn {
        padding: 10px 12px;
        min-height: 44px;
        min-width: 44px;
    }

    .featured-car-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-car-card {
        margin: 0;
    }

    .featured-car-card .card-banner {
        height: 180px;
    }

    .featured-car-card .card-content {
        padding: 20px;
    }

    .featured-car-card .card-title {
        font-size: 1rem;
    }

    .featured-car-card .card-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .featured-car-card .card-list-item {
        font-size: 0.8rem;
    }

    .featured-car-card .card-price strong {
        font-size: 1.5rem;
    }

    .featured-car-card .btn-pricing {
        padding: 12px 16px;
        font-size: 0.8rem;
        min-height: 48px;
    }

    /* WHY CHOOSE US */
    .why-choose .section-title {
        font-size: 1.8rem;
    }

    .why-choose-list {
        gap: 20px;
    }

    .why-choose-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .why-choose-card .card-icon {
        margin-bottom: 15px;
    }

    /* GET START */
    .get-start .section-title {
        font-size: 1.8rem;
    }

    .get-start-list {
        gap: 20px;
    }

    .get-start-card {
        height: auto;
        min-height: 280px;
        padding: 25px 20px;
    }

    .get-start-card .card-title {
        font-size: 1.1rem;
    }

    .get-start-card .card-text {
        font-size: 0.9rem;
    }

    .get-start-card .card-link {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* BLOG */
    .blog .section-title {
        font-size: 1.8rem;
    }

    .blog .has-scrollbar > li {
        max-width: 280px;
    }

    .blog-card .card-content {
        padding: 16px;
    }

    .blog-card .card-title {
        font-size: 1rem;
    }

    /* SOCIAL BAR */
    .social-bar .container {
        flex-direction: column;
        gap: 15px;
    }

    .social-bar-text {
        margin-right: 0;
        text-align: center;
    }

    /* POPUP */
    .popup-content {
        width: 95%;
        margin: 10px;
        border-radius: 20px;
    }

    .popup-header,
    .popup-body {
        padding: 20px 15px;
    }

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

    .car-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .popup-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-reserve,
    .btn-contact {
        min-height: 48px;
    }
}

/* MOBILE MÉDIO (481px - 575px) */
@media (min-width: 481px) and (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .featured-car .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 75vh;
    }

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

    .hero-text {
        font-size: 1.2rem;
    }

    .featured-car-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .featured-car-card .card-banner {
        height: 295px;
    }

    .featured-car-card .card-list {
        grid-template-columns: 1fr 1fr;
    }

    .why-choose-card {
        flex-direction: row;
        text-align: left;
    }

    .get-start-list,
    .why-choose-list {
        gap: 25px;
    }
}

/**
 * responsive for large than 350px screen
 */

@media (min-width: 350px) {
    /**
   * FEATURED CAR
   */

    .featured-car-card .card-list {
        grid-template-columns: 1fr 1fr;
    }
}

/**
 * responsive for large than 576px screen
 */

@media (min-width: 576px) {
    /**
   * REUSED STYLE
   */

    .container {
        max-width: 540px;
        margin-inline: auto;
        padding: 0 20px;
    }

    .featured-car .container {
        padding: 0 20px;
    }

    /**
   * HERO
   */

    .hero {
        min-height: 80vh;
    }

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

    .hero-text {
        font-size: 1.3rem;
    }

    /**
   * FEATURED CARS
   */

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

    .featured-car-card .card-banner {
        height: 220px;
    }

    /**
   * HEADER
   */

    .header-actions .btn span {
        display: block;
        font-weight: var(--fw-400);
        padding-inline: 15px;
    }

    .header-actions .btn:first-of-type ion-icon {
        display: none;
    }
}

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {
    /**
   * CUSTOM PROPERTY
   */

    :root {
        /**
     * typography
     */

        --fs-1: 2.625rem;
    }

    /**
   * REUSED STYLE
   */

    .container {
        max-width: 720px;
        padding: 0 30px;
    }

    .featured-car .container {
        padding: 0 30px;
    }

    /**
   * HEADER
   */

    .header-actions {
        gap: 30px;
    }

    .header-contact {
        display: block;
        text-align: center;
    }

    .header-contact .contact-link {
        color: var(--text-dark);
        font-family: var(--ff-nunito);
        font-size: var(--fs-5);
        line-height: 1.3;
    }

    .header-contact .contact-link:is(:hover, :focus) {
        color: var(--primary-orange);
    }

    .header-contact .contact-time {
        color: var(--text-light);
        font-size: var(--fs-7);
    }

    /**
   * HERO
   */

    .hero {
        position: relative;
        min-height: 85vh;
        display: flex;
        align-items: center;
        z-index: 1;
    }

    .hero-form {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 0.8fr;
    }

    .input-wrapper:not(:last-of-type) {
        border-bottom: none;
        border-right: 2px solid var(--orange-lighter);
    }

    .input-label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-banner {
        display: block;
        background: url("../images/hero-banner.jpg") no-repeat;
        background-size: cover;
        background-position: left;
        position: absolute;
        top: 100px;
        bottom: 50px;
        left: 65%;
        width: 500px;
        border-radius: 30px;
        z-index: -1;
    }

    /**
   * FEATURED CAR
   */

    .featured-car-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }

    .featured-car-card .card-banner {
        height: 260px;
    }

    .featured-car .title-wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    .view-toggle {
        order: 0;
    }

    /**
   * GET START
   */

    .get-start-list {
        grid-template-columns: 1fr 1fr;
    }

    /**
   * WHY CHOOSE US
   */

    .why-choose-list {
        grid-template-columns: 1fr 1fr;
    }

    .why-choose-card {
        flex-direction: row;
        text-align: left;
    }

    /**
   * SOCIAL BAR
   */

    .social-bar .container {
        flex-direction: row;
        justify-content: center;
    }

    .social-bar-text {
        margin-right: 20px;
    }

    /**
   * ABOUT PAGE
   */

    .hero-about .container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .hero-about-content {
        text-align: left;
    }

    .hero-about-actions {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-about-visual {
        display: block;
    }

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

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

    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 30px;
        padding: 30px;
        margin-left: 7px;
    }

    .timeline-year {
        padding: 15px 10px;
    }

    /**
   * FOOTER
   */

    .footer-brand {
        width: 100%;
    }

    .footer-text {
        max-width: 400px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding-block: 15px;
        box-shadow: var(--shadow-1);
    }

    .social-list {
        margin-bottom: 0;
    }
}

/**
 * responsive for large than 992px screen
 */

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {
    /**
   * REUSED STYLE
   */

    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    .featured-car .container {
        padding: 0 30px;
    }

    /**
   * HERO
   */

    .hero .container {
        width: 100%;
    }

    /**
   * FEATURED CARS
   */

    .featured-car-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /**
   * BLOG
   */

    .blog .has-scrollbar {
        padding-bottom: 50px;
    }

    .blog .has-scrollbar > li {
        max-width: 450px;
    }

    /**
   * FOOTER
   */

    .footer-list:not(:last-of-type) {
        width: 25%;
    }

    .footer-list:last-of-type {
        width: 50%;
    }
}

/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {
    /**
   * CUSTOM PROPERTY
   */

    :root {
        /**
     * typography
     */

        --fs-1: 2.875rem;
        --fs-2: 2rem;
    }

    /**
   * REUSED STYLE
   */

    .container {
        max-width: 1170px;
        padding: 0 40px;
    }

    .featured-car .container {
        padding: 0 40px;
    }

    /**
   * HEADER
   */

    .overlay,
    .nav-toggle-btn {
        display: none;
    }

    .navbar,
    .navbar.active {
        all: unset;
    }

    .navbar-link {
        margin-bottom: 0;
        font-weight: 500;
        padding: 8px 0;
        position: relative;
    }

    .navbar-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-orange);
        transition: width 0.3s ease;
    }

    .navbar-link:is(:hover, :focus)::after {
        width: 100%;
    }

    .navbar-list {
        display: flex;
        margin-left: 95px;
        gap: 35px;
    }

    .header .container {
        padding: 0 30px;
        max-width: 1170px;
        margin: 0 auto;
    }

    /**
   * HERO
   */

    .hero {
        min-height: 100vh;
        margin-top: 25px;
    }

    .hero-banner {
        left: auto;
        right: 50px;
        width: 630px;
    }

    .hero-form {
        max-width: 900px;
    }

    .hero-form .btn {
        --width: calc(100% - 40px);
        --height: 50px;
        margin: 20px;
        text-transform: uppercase;
    }

    /**
   * FEATURED CAR
   */

    .featured-car-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 45px;
    }

    .featured-car-card .card-banner {
        height: 295px;
    }

    /**
   * GET START
   */

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

    /**
   * WHY CHOOSE US
   */

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

    /**
   * ABOUT PAGE
   */

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

    /**
   * BLOG
   */

    .blog .has-scrollbar > li {
        max-width: 340px;
        scroll-snap-align: center;
    }

    /**
   * FOOTER
   */

    .footer-brand {
        width: 33.33%;
    }

    .footer-text {
        max-width: 35ch;
    }

    .footer-list:not(:last-of-type) {
        width: 16.66%;
    }

    .footer-list:last-of-type {
        width: 33.33%;
    }
}

/*-----------------------------------*\
  #RENTAL SERVICES
\*-----------------------------------*/

.rental-services {
    background: #fc9835;
    position: relative;
}

.rental-services .section-title {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    color: var(--white);
    font-size: var(--fs-2);
    font-weight: 700;
}

.rental-services .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.rental-services-list {
    display: grid;
    gap: 30px;
}

.rental-services-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-18);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.rental-services-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent, var(--primary-orange));
    transition: all 0.3s ease;
}

.rental-services-card:hover {
    border-color: var(--card-accent, var(--primary-orange));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.rental-services-card .card-icon {
    color: var(--card-accent, var(--primary-orange));
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.rental-services-card:hover .card-icon {
    transform: scale(1.1);
}

.rental-services-card .card-icon ion-icon {
    font-size: 30px;
    --ionicon-stroke-width: 45px;
}

.rental-services-card:nth-child(1) {
    --card-accent: var(--primary-orange);
}

.rental-services-card:nth-child(2) {
    --card-accent: var(--secondary-blue);
}

.rental-services-card:nth-child(3) {
    --card-accent: var(--primary-orange);
}

.rental-services-card:nth-child(4) {
    --card-accent: var(--secondary-blue);
}

.rental-services-card .card-title {
    color: var(--text-dark);
    font-family: var(--ff-nunito);
    font-weight: var(--fw-600);
    margin-bottom: 15px;
    font-size: var(--fs-4);
}

.rental-services-card .card-text {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
}

.rental-services-card .card-link {
    color: var(--card-accent, var(--primary-orange));
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--card-accent, var(--primary-orange));
    border-radius: var(--radius-10);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
    align-self: flex-start;
}

.rental-services-card .card-link:is(:hover, :focus) {
    background: var(--card-accent, var(--primary-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*-----------------------------------*\
  #ABOUT PAGE
\*-----------------------------------*/

.hero-about {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-about-bg {
    background: linear-gradient(
        135deg,
        var(--neutral-dark) 0%,
        var(--primary-orange) 100%
    );
    width: 100%;
    padding: 120px 0 80px;
    position: relative;
}

.hero-about-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.3;
}

.hero-about .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-about-content {
    text-align: 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-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--ff-nunito);
}

.stat-number-hero {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--ff-nunito);
}

.stat-label-hero {
    font-size: var(--fs-6);
    color: var(--white);
    margin-top: 5px;
}

.stat-label {
    font-size: var(--fs-6);
    color: var(--white);
    margin-top: 5px;
}

.hero-about-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: var(--fw-600);
    transition: background-color 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--primary-orange);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-weight: var(--fw-600);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--neutral-dark);
}

.hero-about-visual {
    display: none;
}

.car-showcase {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.main-car {
    width: 100%;
    height: auto;
    border-radius: var(--radius-18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.element {
    position: absolute;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
}

.element ion-icon {
    font-size: 20px;
    color: var(--primary-orange);
}

.element-1 {
    top: 20%;
    right: -10px;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: -10px;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-story {
    padding: 80px 0;
    background: var(--neutral-light);
}

.about-story .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: var(--fs-2);
    font-weight: 700;
    color: var(--neutral-dark);
    position: relative;
}

.about-story .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.story-info {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-18);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.story-intro {
    font-size: var(--fs-5);
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 30px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 15px 12px;
    background: var(--white);
    border-radius: var(--radius-10);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: var(--fs-3);
    font-weight: 700;
    color: var(--primary-orange);
    font-family: var(--ff-nunito);
    margin-bottom: 3px;
}

.stat-label {
    font-size: var(--fs-7);
    color: var(--text-medium);
    font-weight: var(--fw-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 80px;
}

.timeline-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-14);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -65px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(252, 152, 53, 0.3);
}

.timeline-year {
    background: var(--secondary-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: var(--fs-7);
    font-weight: var(--fw-600);
    margin-bottom: 15px;
    display: inline-block;
}

.timeline-title {
    font-size: var(--fs-4);
    font-weight: var(--fw-600);
    color: var(--neutral-dark);
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: var(--fs-6);
}

@media (max-width: 768px) {
    .about-story {
        padding: 60px 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-info {
        padding: 30px;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        display: none;
    }

    .timeline-items {
        padding-left: 0;
    }

    .timeline-item::before {
        display: none;
    }
}

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

.about-story .section-title {
    margin-bottom: 40px;
}

.about-story .section-title span {
    color: var(--primary-orange);
}

.story-subtitle {
    color: var(--text-medium);
    font-size: var(--fs-5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-values {
    background: var(--primary-orange);
    padding: 60px 0;
}

.mission-values .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
    font-size: var(--fs-2);
    font-weight: 700;
    position: relative;
}

.mission-values .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-blue);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(33, 112, 179, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--primary-orange),
        var(--secondary-blue)
    );
    border-radius: 24px 24px 0 0;
}

.value-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(33, 112, 179, 0.02),
        rgba(252, 152, 53, 0.02)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

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

.value-card:hover::after {
    opacity: 1;
}

.value-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--orange-lighter),
        var(--blue-lighter)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid rgba(33, 112, 179, 0.1);
}

.value-card:hover .card-icon {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--secondary-blue)
    );
    transform: rotate(360deg) scale(1.1);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(33, 112, 179, 0.3);
}

.value-card .card-icon ion-icon {
    font-size: 36px;
    color: var(--primary-orange);
    transition: all 0.4s ease;
    --ionicon-stroke-width: 45px;
}

.value-card:hover .card-icon ion-icon {
    color: var(--white);
    transform: scale(1.1);
}

.value-card .card-title {
    color: var(--neutral-dark);
    font-family: var(--ff-nunito);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: var(--fs-4);
    position: relative;
    z-index: 2;
}

.value-card .card-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: var(--fs-6);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .mission-values {
        padding: 50px 0;
    }

    .value-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .value-card .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .value-card .card-icon ion-icon {
        font-size: 32px;
    }
}

.numbers {
    background: linear-gradient(
        135deg,
        var(--neutral-dark) 0%,
        var(--secondary-blue) 100%
    );
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.numbers::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="numbers-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23numbers-grid)"/></svg>');
    opacity: 0.3;
}

.numbers .container {
    position: relative;
    z-index: 2;
}

.numbers .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
    font-size: var(--fs-2);
    font-weight: 700;
    position: relative;
}

.numbers .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.numbers-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.number-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-18);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.number-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(252, 152, 53, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.number-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.number-card:hover::before {
    opacity: 1;
}

.number-card .number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: var(--ff-nunito);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(252, 152, 53, 0.3);
}

.number-card .number-label {
    color: var(--white);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .numbers {
        padding: 80px 0;
    }

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

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .number-card .number {
        font-size: 3rem;
    }
}

.team {
    padding: 80px 0;
}

.team .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: var(--fs-2);
    font-weight: 700;
    color: var(--neutral-dark);
    position: relative;
}

.team .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-medium);
    line-height: 1.6;
    font-size: var(--fs-6);
}

.team-features {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-10);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-orange);
}

.feature-item ion-icon {
    font-size: 24px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: var(--fw-600);
}

/*-----------------------------------*\
  #HERO ABOUT NEW - INNOVATIVE DESIGN
\*-----------------------------------*/

.hero-about-new {
    min-height: 100vh;
    background: linear-gradient(135deg, #001a33 0%, #2170b3 50%, #fc9835 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="automotive-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23fc9835" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23automotive-grid)"/></svg>');
    opacity: 0.4;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-main-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(252, 152, 53, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(252, 152, 53, 0.3);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge ion-icon {
    font-size: 20px;
    color: var(--secondary-blue);
}

.hero-title-new {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight-text {
    background: linear-gradient(
        45deg,
        var(--secondary-blue),
        var(--primary-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        45deg,
        var(--secondary-blue),
        var(--primary-orange)
    );
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

.hero-description {
    font-size: var(--fs-5);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(252, 152, 53, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-blue);
    box-shadow: 0 15px 40px rgba(252, 152, 53, 0.3);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        45deg,
        var(--primary-orange),
        var(--secondary-blue)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon ion-icon {
    font-size: 24px;
    color: var(--white);
    --ionicon-stroke-width: 50px;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--ff-nunito);
    line-height: 1;
}

.feature-label {
    font-size: var(--fs-6);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: var(--fw-600);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-explore::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-explore:hover::before {
    left: 0;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 152, 53, 0.4);
}

.btn-fleet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: var(--fw-600);
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-fleet:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(33, 112, 179, 0.3);
}

.hero-visual {
    display: none;
}

.car-showcase {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.main-car-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.car-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(252, 152, 53, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.main-car-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card ion-icon {
    font-size: 24px;
    color: var(--primary-orange);
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    color: var(--text-dark);
    line-height: 1;
}

.card-subtitle {
    font-size: var(--fs-7);
    color: var(--text-medium);
}

.card-1 {
    top: 15%;
    right: -10px;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: -15px;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(
        45deg,
        var(--secondary-blue),
        var(--primary-orange)
    );
    opacity: 0.1;
}

.line-1 {
    width: 2px;
    height: 100%;
    left: 20%;
    animation: slideDown 8s ease-in-out infinite;
}

.line-2 {
    width: 100%;
    height: 2px;
    top: 30%;
    animation: slideRight 10s ease-in-out infinite;
}

.line-3 {
    width: 2px;
    height: 100%;
    right: 25%;
    animation: slideUp 12s ease-in-out infinite;
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideDown {
    0%,
    100% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100vh);
    }
}

@keyframes slideRight {
    0%,
    100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100vw);
    }
}

@keyframes slideUp {
    0%,
    100% {
        transform: translateY(100%);
    }
    50% {
        transform: translateY(-100vh);
    }
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .hero-main-content {
        text-align: left;
    }

    .hero-visual {
        display: block;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: flex-start;
    }
}

@media (min-width: 1200px) {
    .hero-about-new {
        padding: 140px 0 100px;
    }

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
}
.hero-minimal {
    padding: 120px 0 80px;
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: var(--fs-5);
    color: var(--text-medium);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.metric {
    font-size: var(--fs-6);
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.car-frame {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.car-frame::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    opacity: 0.3;
}

.car-frame img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-metrics {
        justify-content: flex-start;
    }
}
.error_message {
    font-size: 14px;
    margin-top: 6px;
    font-weight: 600;
    color: #ec333f;
}
.select2-container .select2-selection--single {
    height: 48px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    color: #222;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 48px !important;
}

.flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
