.garage-top {
    background: #fff;
}

.garage-top .container {
    padding: 1rem 15px;
}

.garage-back {
    color: #6c757d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.garage-back:hover {
    color: #212529;
}

.garage-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.garage-hero-bg {
    position: relative;
    width: 100%;
    flex: 1;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.hero-overlay.hero-overlay-index {
    background: #F1F1F2;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical */
    min-height: 25vh
}

.hero-content {
    color: #fff;
    max-width: 640px;
}

.hero-badges .badge {
    display: inline-block;
    padding: .25rem .6rem;
    font-size: .75rem;
    border-radius: 999px;
    font-weight: 600;
}

.badge-danger {
    background: rgb(220 38 38) !important;
    color: #fff;
}

.badge.badge-success {
    background: #28a745;
    color: #fff;
}

.hero-title {
    font-size: 2.25rem;
    line-height: 1.05;
    margin-bottom: .6rem;
    font-weight: 700;
    color: rgb(255 255 255);
}

.hero-title-index {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: .6rem;
    font-weight: 700;
    color: #020817;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-subtitle.hero-subtitle-index {
    color: #65758C;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
}

.meta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: .95;
}

.garage-how {
    background: transparent;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.bg-lightish {
    background: #FCFDFE;
}

.video-area {
    max-width: 900px;
}

.video-placeholder {
    height: 24rem;
    background: #F1F5F9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-center {
    text-align: center;
}

.video-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #C3C9CF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

/* features */
.feature {
    padding: 10px 15px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #E4E5E8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-icon img {
    width: 2.5rem;
    color: #0F172A;
}

/* Product cards */
.garage-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.garage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.card-media {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: #fff;
    padding: 4px 8px;
    font-size: .75rem;
    border-radius: 999px;
    font-weight: 700;
}

.card-body {
    padding: 15px;
    min-height: 270px;
}

.card-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
    min-height: 65px;
}

.card-title-index {
    font-size: 1.25rem;
    line-height: 1.75rem;
    /*min-height: 45px;*/
    color: #020817;
    font-weight: 600;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: .5rem;
    display: inline-block;
}

.price-old {
    text-decoration: line-through;
    color: #6c757d;
    font-size: .95rem;
    margin-left: .5rem;
}

.price-note {
    color: #198754;
    font-size: .8rem;
    margin-top: 4px;
}

.card-media.card-media-hero {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .35s ease;
    overflow: hidden;
}

.card-media.card-media-hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    pointer-events: none;
}

.garage-card:hover .card-media.card-media-hero {
    transform: scale(1.05);
}

.badge-active {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #198754;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.badge-active.badge-inactive {
    background: #E3E6EA;
    color: #6B7B90;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    color: #6c757d;
}
.meta-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    fill: none;
    stroke: currentColor;
}
.meta-text { display: inline-block; }
.meta-dot { margin: 0 6px; color: #adb5bd; }

.card-desc {
    color: #6c757d;
    font-size: 14px;
    margin: 10px 0 14px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.availability-month { margin-left: 6px; color: #212529; font-weight: 600; }

.btn-reserve {
    background: #198754;
    border-color: #198754;
    color: #fff;
    height: 40px;
    padding: 6px 14px;
    font-weight: 600;
    border-radius: 4px;
}
.btn-reserve:hover, .btn-reserve:focus {
    background: #157347;
    border-color: #157347;
    color: #fff;
}

.garage-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.garage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.btn-reserve {
    background: #0f9d58;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
}

.btn-reserve:hover {
    background: #0c7b43;
    color: #fff;
    text-decoration: none;
}

.btn-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.text-muted {
    color: #454A55 !important;
}

.h-100 {
    height: 100%;
}

.mb-3 {
    margin-bottom: 1rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.how-works-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #020817;
    font-weight: 700;
}

.video-coming-soon {
    color: #97A2B3;
    font-size: 1.09rem;
}

.feature-title {
    color: #434853;
    font-weight: 600;
    font-size: 1.25rem;
}

.feature-description {
    font-size: 16px;
}

.featured-deals {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #020817;
    font-weight: 700;
}

.featured-deals-description {
    color: #6D7C91;
    font-size: 1rem;
}

.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-area {
    height: 28rem;
    width: 100%;
    box-sizing: border-box;
}

.video-embed {
    width: 100%;
    max-width: calc(28rem * 16 / 9);
    margin: 0 auto;
}

.video-embed-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-embed-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    width: 100%;
    max-width: calc(28rem * 16 / 9);
    height: 100%;
    min-height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    border-radius: 8px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #020817;
    font-weight: 700;
}

.section-subtitle {
    color: #65758C;
    font-size: 1rem;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #7B899C;
}

.icon-card {
    width: 1rem;
    height: 1rem;
    color: #64748B;
}

.notification-input {
    padding: .5rem .75rem;
    font-size: .875rem;
    line-height: 1.25rem;
    border-radius: 0.5em;
    box-sizing:border-box;
}

.how-works-index {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.how-works-index .feature-icon{
    width: 60px;
    height: 60px;
}

.how-works-title.how-works-title-index{
    font-size: 1.5rem;
}

.how-works-index .feature-title{
    font-weight: 600;
    font-size: 1rem;
    color: #0F172A;
}

.how-works-index .feature-description{
    font-size: .875rem;
    color: #7B899C;
}

.press-container {
    max-width: 56rem;
}

/* Grid wrapper: 1 card por linha */
.press-grid {
    display: grid;
    gap: 1.5rem; /* espaço entre cards */
    grid-template-columns: 1fr;  /* **força 1 card por linha** */
    margin: 0;
    width: 100%;
}

/* Card */
.press-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(15,23,42,0.06), 0 2px 4px -2px rgba(15,23,42,0.04);
    transition: box-shadow .2s ease, transform .12s ease;
    overflow: hidden;
    display: block;
    color: inherit;
    text-decoration: none;
}

/* hover larger shadow */
.press-card:hover,
.press-card:focus-within {
    box-shadow: 0 12px 24px -6px rgba(15,23,42,0.12), 0 6px 12px -6px rgba(15,23,42,0.08);
    transform: translateY(-2px);
}

/* inner padding */
.press-card .card-inner {
    padding: 1.5rem;
}

.press-card .card-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* image column */
.press-card .media {
    flex: 0 0 auto;
    width: 10rem;   /* w-40 = 10rem */
    height: 5rem;   /* h-20 = 5rem */
    display: flex;
    align-items: center;
    justify-content: center;
}
.press-card .media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.press-card .content {
    flex: 1 1 0;
    min-width: 0;
}

/* title */
.press-card .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.75rem;
    transition: color .15s ease;
}

.press-card:hover .title,
.press-card:focus-within .title {
    color: #16a34a;
}

.press-card .excerpt, .btn-press-contact-title {
    color: #6b7280;
    margin: 0 0 1rem;
    line-height: 1.45;
    font-size: 1.1em;
}

/* meta row */
.press-card .meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.press-card .meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #6b7280;
    font-size: .875rem;
}
.press-card .meta .source { font-weight: 600; color: #64748B; }

/* button */
.press-card .cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    font-size: .875rem;
    font-weight: 600;
    padding: .45rem .75rem;
    height: 2.25rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: transparent;
    color: #0f172a;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
    cursor: pointer;
}

.press-card:hover .cta,
.press-card:focus-within .cta {
    background: #16a34a;
    color: #ffffff;
    border-color: #16a34a;
}

.press-card .cta svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.btn-press-contact {
    background-color: rgb(34 127 65 / var(--tw-bg-opacity, 1));
    border-color: #10b981;
    font-weight: 600;
    border-radius: calc(.5rem - 2px);
    transition: background-color 0.2s ease;
    padding: .5rem 1rem;
    color: #fff;
    font-size: .875rem;
}

.btn-press-contact:hover {
    background-color: #227f41e6;
    color: #fff;
}

@media (max-width: 420px) {
    .video-area { height: 20rem; }
    .video-embed { max-width: calc(20rem * 16 / 9); }

    .how-works-index {
        width: 100%;
    }

    .hero-subtitle.hero-subtitle-index {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .hero-inner {
        padding: 35px 0;
    }

    .press-card .media {
        width: 100%;
        height: auto;
        margin-bottom: .75rem;
    }
    .press-card .card-row { flex-direction: column; }
    .press-card .media img { max-height: 6rem; }
}
