/* =========================
   RESET + TOKENS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aca-yellow: #FFC629;
    --aca-red: #EA0029;
    --bg-dark: #111111;
    --bg-dark-2: #1A1A1A;
    --bg-cream: #FFFFFF;
    --bg-stone: #F2F0EB;
    --bg-sand: #EDE9E1;
    --surface: #FFFFFF;
    --text-dark: #111111;
    --text-body: rgba(17, 17, 17, 0.78);
    --text-light: #F5F5F5;
    --text-light-muted: rgba(245, 245, 245, 0.78);
    --border-light: rgba(17, 17, 17, 0.10);
    --border-light-2: rgba(17, 17, 17, 0.16);
    --border-dark: rgba(255, 255, 255, 0.10);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.10);
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: var(--bg-cream);
    color: var(--text-dark);
}

a {
    color: inherit;
}

/* =========================
   HERO
========================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: 0 64px;
    height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(234, 0, 41, 0.14), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(255, 198, 41, 0.12), transparent 22%),
        linear-gradient(90deg, #111111 0%, #151515 55%, #1b1b1b 100%);
}

.hero-container {
    max-width: 1920px;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6.25rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 0;
    height: 100%;
    gap: 10%;
}

.logo-hero {
    position: absolute;
    top: 64px;
    left: 64px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-light);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-offer {
    font-size: 80px;
    font-weight: 900;
    color: var(--aca-yellow);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.campaign-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--aca-red);
    padding: 6px 0;
}

.hero-title .bold {
    font-weight: 800;
    color: var(--aca-yellow);
}

.beneficios-hero {
    margin-bottom: 1.5rem;
    filter: saturate(1.05);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Pathway Extreme', sans-serif;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--aca-yellow);
    color: var(--text-dark);
    border-color: var(--aca-yellow);
    box-shadow: 0 8px 22px rgba(255, 198, 41, 0.26);
}

.btn-primary:hover {
    background: #ffd45b;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 198, 41, 0.30);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.10);
    color: var(--text-light);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.42);
}

.full-width {
    width: 100% !important;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100vh;
    overflow: hidden;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    will-change: transform;
}

.image-column.scroll-up {
    animation: heroScrollUp 30s linear infinite;
}

.image-column.scroll-down {
    animation: heroScrollDown 30s linear infinite;
}

.hero-image {
    width: 100%;
    height: 340px;
    border-radius: 15px;
    object-fit: cover;
    filter: brightness(0.88) contrast(1.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@keyframes heroScrollUp {
    from { transform: translateY(0); }
    to { transform: translateY(calc(-50% - 0.5rem)); }
}

@keyframes heroScrollDown {
    from { transform: translateY(calc(-50% - 0.5rem)); }
    to { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .image-column.scroll-up,
    .image-column.scroll-down {
        animation: none;
    }
}

/* =========================
   BENEFITS SECTION LEGACY
========================= */
.benefits-section {
    padding: 40px 0;
    margin-left: 64px;
    margin-right: 64px;
    max-width: 1600px;
}

.benefits-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon-img {
    display: block;
    margin: 0 auto;
    width: 64px;
    height: 64px;
    object-fit: contain;
}
.benefit-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-description {
    color: var(--text-body);
    font-size: 0.9rem;
    max-width: 300px;
    margin: 0 auto;
}

.center-button {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

/* =========================
   EXTENDED BENEFITS
========================= */
.extended-benefits {
    padding: 112px 64px;
    background: var(--bg-cream);
}

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

.header-section {
    width: 60%;
}

.header-section-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preheader {
    color: var(--aca-red);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.extended-benefits-header {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.15;
    color: var(--text-dark);
}

.extended-benefits-text,
.extended-benefits-text-center {
    color: var(--text-body);
    margin-bottom: 30px;
    max-width: 600px;
}

.extended-benefits-text-center {
    text-align: center;
}

.tabs-sidebar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefits-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding: 40px;
}

.accordion-column {
    flex: 1;
    min-width: 300px;
    width: 50%;
}

.column-2 {
    flex: 1;
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
}

.tabs-container {
    flex: 1;
    background-color: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    min-width: 300px;
    box-shadow: none;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab.active {
    background-color: var(--aca-yellow);
    color: var(--text-dark);
}

.tab:not(.active) {
    background-color: #F3EEE1;
    color: var(--text-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.accordion {
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: transparent;
}

.accordion-header {
    background-color: var(--surface);
    padding: 15px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.accordion-header::after {
    content: "▼";
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: var(--aca-red);
}

.accordion.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--surface);
    gap: 15px;
}

.accordion.active .accordion-content {
    max-height: 500px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

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

.benefit-item {
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FCFBF8;
    color: var(--text-dark);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon-small {
    color: var(--aca-red);
    font-size: 1.2rem;
    min-width: 24px;
}

.pricing-sidebar {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 198, 41, 0.45);
    border-radius: var(--radius-lg);
    padding: 40px 20px 20px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f0 100%);
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.discount-badge {
    position: absolute;
    top: -40px;
    left: 0%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
}

.discount-badge-img {
    width: 90%;
}

.combustible-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.combustible-badge img {
    max-width: 75%;
    height: auto;
    display: inline-block;
}

.discount-amount {
    font-size: 1.4rem;
}

.discount-label {
    font-size: 0.7rem;
}

.sidebar-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-dark);
}

.sidebar-subtitle {
    color: var(--text-body);
    font-size: 16px;
    margin-bottom: 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--text-dark);
}

.currency {
    font-size: 1rem;
    font-weight: 400;
}

.period {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(17, 17, 17, 0.45);
}

.cta-button.full-width {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--aca-yellow);
    padding: 14px 0;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: background-color 0.3s ease;
}

.cta-button.full-width:hover {
    background-color: #ffd45b;
}

/* =========================
   INSTITUTIONAL SECTIONS
========================= */
.institutional-section {
    display: flex;
    flex-direction: column;
    padding: 60px 64px;
    margin-top: 0;
    gap: 20px;
}

#auxilio.institutional-section {
    background: var(--bg-stone);
}

#ruta.institutional-section {
    background:
        linear-gradient(180deg, rgba(17,17,17,0.92) 0%, rgba(26,26,26,0.92) 100%),
        radial-gradient(circle at 20% 20%, rgba(234,0,41,0.12), transparent 25%);
}

#ruta .preheader,
#ruta .extended-benefits-header,
#ruta .extended-benefits-text,
#ruta .info-text,
#ruta .brand-description {
    color: var(--text-light);
}

#ruta .extended-benefits-text {
    color: var(--text-light-muted);
}

#ruta .info-block,
#ruta .brand-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-dark);
}

#ruta .brand-card {
    box-shadow: none;
}

#bienestar.institutional-section {
    background: var(--bg-cream);
}

.institutional-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    gap: 40px;
    margin-bottom: 140px;
}

.institutional-header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.institucional-mobile {
    display: none;
}

.image-row {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: visible;
    height: 600px;
    max-height: 600px;
    max-width: 50%;
}

.institutional-image {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 75%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 14px;
    box-shadow: none;
}

.institutional-image.active {
    opacity: 1;
    height: 500px;
    overflow: visible;
}

.info-column {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
}

.info-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 18px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(8px);
}

.info-block:hover {
    box-shadow:none;
    transform: translateY(-4px);
}

.info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-title {
    color: var(--aca-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-text {
    color: var(--text-dark);
    text-align: left;
}

.join-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.join-title {
    font-size: 48px;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 15px;
}

.join-text {
    color: #666;
    margin-bottom: 25px;
}

.mobile-only {
    display: none;
}

.mobile-carousel,
.mobile2-carousel {
    display: none;
    background-color: var(--surface);
    border-radius: 16px;
    box-shadow: none;
    margin: 20px 0;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.carousel-container,
.carousel2-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 20px;
}

.carousel-slides,
.carousel2-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide,
.carousel2-slide {
    min-width: 100%;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.carousel2-slide {
    justify-content: flex-end;
}

img.slide-image,
img.slide2-image {
    aspect-ratio: 4 / 3;
    display: block;
}

.slide-content,
.slide2-content {
    margin-bottom: 20px;
}

.slide2-content {
    padding: 0 10px;
}

.slide-title,
.slide2-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aca-yellow);
    margin-bottom: 10px;
}

.slide-description,
.slide2-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.slide-image,
.slide2-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0;
    display: block;
    flex-shrink: 0;
}

.carousel-nav,
.carousel2-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-dark);
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel2-nav {
    top: 60%;
    font-size: 22px;
}

.carousel-nav:hover,
.carousel2-nav:hover {
    background-color: var(--aca-yellow);
}

.carousel-prev,
.carousel2-prev {
    left: 10px;
}

.carousel-next,
.carousel2-next {
    right: 10px;
}

.carousel-dots,
.carousel2-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dots {
    bottom: 10px;
}

.carousel2-dots {
    bottom: 40px;
}

.carousel-dot,
.carousel2-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(17,17,17,0.16);
    cursor: pointer;
    transition: background-color 0.3s;
    border: 2px solid rgba(255,255,255,0.8);
}

.carousel-dot.active,
.carousel2-dot.active {
    background-color: var(--aca-yellow);
    border-color: var(--aca-yellow);
}

/* =========================
   BRANDS BENEFITS
========================= */
.brands-benefits-section {
    padding: 60px 20px;
}

.brands-benefits-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1920px;
    margin: 80px auto 0;
}

.brand-card {
    border: 1px solid var(--border-light-2);
    border-radius: 14px;
    padding: 32px 24px;
    background-color: rgba(255,255,255,0.70);
    max-width: 390px;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 350px;
    min-height: 200px;
    box-shadow:none;
}

.brand-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 16px;
}

.brand-description {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

/* =========================
   CTA MID
========================= */
.cta-section {
    position: relative;
    width: 100%;
    height: 80vh;
    margin-top: 60px;
    overflow: hidden;
}

.cta-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: url('assets/argentina-aca.webp');
}

.cta-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.56) 100%);
}

.aca-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    margin-bottom: 10px;
}

.cta-subtitle {
    color: white;
    width: 60%;
    font-size: 1rem;
    z-index: 2;
    margin-bottom: 20px;
}

.cta-button {
    background-color: var(--aca-yellow);
    color: black;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: var(--radius-md);
    text-decoration: none;
    z-index: 2;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ffd45b;
}

/* =========================
   INSTITUTIONAL 2
========================= */
.institutional2-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 64px;
    margin-top: 0;
    gap: 48px;
    background: var(--bg-sand);
}

.institutional2-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.institutional2-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 80px auto;
    gap: 48px;
    align-items: center;
}

.image2-column {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
}

.institutional2-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.institutional2-image.active {
    opacity: 1;
}

.info2-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info2-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 14px;
    border: 1px solid rgba(17, 17, 17, 0.10);
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255,255,255,0.58);
    backdrop-filter: blur(8px);
}

.info2-block:hover {
    box-shadow: none;
    transform: translateY(-5px);
}

.info2-title {
    color: var(--aca-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info2-text {
    color: var(--text-dark);
    text-align: center;
}

.join2-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.join2-title {
    font-size: 48px;
    line-height: 120%;
    font-weight: 700;
    margin-bottom: 15px;
}

.join2-text {
    color: #666;
    margin-bottom: 25px;
}

/* =========================
   FAQ
========================= */
.faq-section {
    padding: 112px 64px;
    background-color: var(--surface);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-titulo {
    font-size: 18px;
    font-weight: 600;
    color: var(--aca-red);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.faq-item {
    background-color: var(--surface);
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover,
.faq-question:hover .faq-titulo {
    color: var(--aca-yellow);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--aca-red);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 14px;
    color: var(--aca-red);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 30px;
}

.faq-answer p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* =========================
   CTA FOOTER
========================= */
.cta-section-footer {
    position: relative;
    width: 100%;
    height: 90vh;
    margin-top: 0px;
    overflow: hidden;
}

.cta-image-footer {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: url('assets/norte-argentino.webp');
}

/* =========================
   FOOTER
========================= */
.footer {
    background-color: var(--bg-dark);
    padding: 60px 64px 40px 64px;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    margin-bottom: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
}

.footer-copyright {
    color: rgba(245,245,245,0.75);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--aca-yellow);
    text-decoration: underline;
}

/* =========================
   PRIVACY POPUP
========================= */
.privacy-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

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

.privacy-popup-container {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

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

.privacy-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px 40px;
    border-bottom: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.privacy-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.privacy-popup-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.privacy-popup-close:hover {
    background-color: #f5f5f5;
    color: var(--aca-red);
}

.privacy-popup-content {
    padding: 30px 40px 40px 40px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.6;
}

.privacy-popup-content p {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 16px;
    text-align: justify;
}

.privacy-popup-content p:last-child {
    margin-bottom: 0;
}

.privacy-popup-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--aca-red);
    margin: 30px 0 15px 0;
    line-height: 1.3;
}

.privacy-popup-content h3:first-child {
    margin-top: 0;
}

.privacy-popup-content::-webkit-scrollbar {
    width: 6px;
}

.privacy-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.privacy-popup-content::-webkit-scrollbar-thumb {
    background: var(--aca-yellow);
    border-radius: 3px;
}

.privacy-popup-content::-webkit-scrollbar-thumb:hover {
    background: #e6b21f;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        margin-bottom: -30px;
    }

    .hero-content {
        order: 1;
        text-align: left;
        gap: 1.5rem;
        padding: 20px 0;
    }

    .logo-hero {
        position: absolute;
        top: 40px;
        left: 20px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .hero-images {
        order: 2;
        height: 400px;
    }

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

    .hero-buttons {
        justify-content: left;
    }

    .btn {
        max-width: 190px;
    }

    .institutional-container {
        flex-direction: column;
        align-items: center;
        margin-left: 20px;
        margin-right: 20px;
        gap: 24px;
    }

    .institutional-desktop {
        display: none;
    }

    .image-row {
        width: 100%;
        height: auto;
        position: relative;
        aspect-ratio: 1 / 1;
        max-width: 100%;
    }

    .institutional-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .institutional-image.active {
        opacity: 1;
    }

    .info-column {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .info-block {
        width: 100%;
    }

    .info-text {
        font-size: 15px;
    }

    .section-carrousel {
        padding: 60px 20px;
        background: inherit;
    }

    .stats-container {
        display: none !important;
    }

    .brands-benefits-container {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .brand-card {
        width: 100%;
    }

    .header-section-center {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .extended-benefits-text-center {
        text-align: left;
    }

    .cta-section {
        position: relative;
        width: 100%;
        height: 70vh;
        overflow: hidden;
    }

    .cta-image {
        content: url('assets/argentina-aca-mobile.webp');
    }

    .cta-image-footer {
        content: url('assets/norte-argentino-mobile.webp');
    }

    .aca-bg-icon {
        width: 260px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        width: 100%;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .institutional2-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .institutional2-desktop {
        display: none;
    }

    .image2-column {
        width: 100%;
        height: auto;
        position: relative;
        aspect-ratio: 1 / 1;
    }

    .institutional2-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .institutional2-image.active {
        opacity: 1;
    }

    .info2-column {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .info2-block {
        width: 100%;
        max-width: 350px;
    }

    .section2-carrousel {
        padding: 60px 20px;
        background: inherit;
    }

    .mobile2-carousel,
    .mobile-carousel {
        display: block !important;
    }

    .faq-section {
        padding: 80px 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 25px 0;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 25px;
    }

    .footer {
        padding: 40px 20px 30px 20px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-left {
        order: 2;
    }

    .footer-right {
        order: 1;
        justify-content: center;
        gap: 20px;
    }

    .footer-copyright,
    .footer-link {
        font-size: 12px;
    }

    .privacy-popup-overlay {
        padding: 10px;
    }

    .privacy-popup-container {
        max-height: 95vh;
        border-radius: 8px;
    }

    .privacy-popup-header {
        padding: 20px 25px 15px 25px;
    }

    .privacy-popup-title {
        font-size: 22px;
    }

    .privacy-popup-close {
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    .privacy-popup-content {
        padding: 20px 25px 30px 25px;
    }

    .privacy-popup-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .privacy-popup-content h3 {
        font-size: 16px;
        margin: 25px 0 12px 0;
    }

    .mobile-only {
        display: block;
    }

    .carousel-slide,
    .carousel2-slide {
        height: auto;
        min-height: 400px;
        padding-top: 0;
        gap: 20px;
    }

    .slide-image {
        height: 750px;
        width: 100%;
        object-fit: cover;
    }

    .slide2-image {
        height: 400px;
        width: 100%;
        object-fit: cover;
    }

    .carousel-container,
    .carousel2-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding-top: 20px;
        min-height: 450px;
    }

    .carousel-slides,
    .carousel2-slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 20px;
        padding-bottom: 0 !important;
    }

    .hero-content {
        padding: 20px 0;
        margin-bottom: -30px;
    }

    .beneficios-hero {
        max-width: 350px;
    }

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

    .hero-images {
        height: 380px;
    }

    .hero-image {
        height: 260px;
    }

    .benefits-tag {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .benefits-section {
        padding: 60px 0;
    }

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

    .benefits-title {
        font-size: 28px;
        line-height: 35px;
    }

    .benefits-sticker {
        max-width: 350px;
        bottom: -10px;
    }

    .header-section {
        width: 100%;
    }

    .tabs-sidebar-container {
        flex-direction: column;
    }

    .benefits-content-wrapper {
        align-items: center;
        padding: 20px;
    }

    .tab,
    .tab.active {
        flex-direction: column;
        text-align: center;
    }

    .sidebar-title {
        font-size: 24px;
    }

    .pricing-sidebar {
        width: 100%;
        margin-top: 30px;
    }

    .discount-badge {
        position: absolute;
        top: -30px;
        left: 5%;
        transform: translateX(-50%);
        width: 60% !important;
    }

    .discount-badge-img {
        width: 30%;
    }

    .combustible-badge {
        position: absolute;
        top: -15px;
        width: 70%;
    }

    .combustible-badge-img {
        width: 50%;
    }

    .discount-img {
        position: absolute;
    }

    .extended-benefits {
        padding: 80px 20px;
    }

    .extended-benefits-header {
        font-size: 1.8rem;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .footer {
        padding: 30px 20px 25px 20px;
    }

    .footer-logo {
        margin-bottom: 25px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-right {
        flex-direction: column;
        gap: 15px;
    }

    .footer-divider {
        margin-bottom: 25px;
    }

    .privacy-popup-overlay {
        padding: 5px;
    }

    .privacy-popup-container {
        max-height: 98vh;
        border-radius: 6px;
    }

    .privacy-popup-header {
        padding: 15px 20px 12px 20px;
    }

    .privacy-popup-title {
        font-size: 20px;
    }

    .privacy-popup-close {
        font-size: 24px;
        width: 30px;
        height: 30px;
    }

    .privacy-popup-content {
        padding: 15px 20px 25px 20px;
    }

    .privacy-popup-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .privacy-popup-content h3 {
        font-size: 15px;
        margin: 20px 0 10px 0;
    }

    .slide-image {
        height: 380px;
        width: 100%;
        object-fit: cover;
    }
}
.manifest-section {
    position: relative;
    overflow: hidden;
}

.manifest-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,198,41,0.05), transparent 60%);
}
.manifest-section {
    background: #111111;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.manifest-container {
    max-width: 900px;
}

.manifest-section .preheader {
    color: #EA0029;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.manifest-title {
    font-size: 42px;
    line-height: 1.3;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 24px;
}

.manifest-text {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.manifest-section {
    position: relative;
    overflow: hidden;
    background: #111111;
    padding: 120px 20px 180px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.manifest-container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.manifest-section .preheader {
    color: #EA0029;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.manifest-title {
    font-size: 42px;
    line-height: 1.25;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 24px;
}

.manifest-title span {
    color: #FFC629;
}

.manifest-text {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

.manifest-crowd {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.manifest-crowd img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.22;
}
.compact-benefits-section .header-section {
    width: 100%;
    max-width: 760px;
}

.benefits-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 56px;
}

	.benefit-grid-card {
		background: rgba(255,255,255,0.04);
		border: 1px solid rgba(255,255,255,0.12);
		border-radius: 16px;
		padding: 24px 20px;
		min-height: 180px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 18px;
		transition: all 0.3s ease;
}

.benefit-grid-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,198,41,0.35);
    box-shadow:none;
}

.benefit-grid-card .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-grid-card p {
    margin: 0;
    color: #F5F5F5;
    font-size: 17px;
    line-height: 1.45;
}
@media (max-width: 1024px) {
    .benefits-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .benefits-grid-5 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-grid-card {
        min-height: auto;
        padding: 20px 18px;
    }

    .benefit-grid-card p {
        font-size: 16px;
    }
}

/* =========================
   POPUP ANIMATION
========================= */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.privacy-popup-overlay.active .privacy-popup-container {
    animation: popupFadeIn 0.3s ease-out;
}


/* =========================
   AJUSTES FINALES PREVIEW
========================= */
.compact-header-center {
    width: 100%;
    max-width: 820px;
}

.institutional-route-section {
    background: linear-gradient(180deg, rgba(17,17,17,0.96) 0%, rgba(26,26,26,0.96) 100%);
}

.institutional-route-section .container {
    max-width: 1600px;
}

.compact-brands-row {
    margin-top: 32px;
}

.benefits-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin-top: 56px;
}
.benefit-grid-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    padding: 24px 20px;
    min-height: 180px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;

    transition: all 0.3s ease;
}

.benefit-grid-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,198,41,0.55);
    background: rgba(255,255,255,0.13);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* CONTENEDOR DEL ICONO */
.benefit-grid-card .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

/* ICONO */
.benefit-grid-card .benefit-icon-img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.4);
}

/* TEXTO */
.benefit-grid-card p {
    margin: 0;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 1.45;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .benefits-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid-5 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-grid-card {
        min-height: auto;
        padding: 20px 18px;
    }

    .benefit-grid-card p {
        font-size: 16px;
    }
}

/* =========================
   AJUSTES ACORDADOS
========================= */

/* Manifiesto */
.manifest-section {
    position: relative;
    overflow: hidden;
    background: #111111;
    padding: 120px 20px 180px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.manifest-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,198,41,0.05), transparent 60%);
}

.manifest-container {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.manifest-section .preheader {
    color: #EA0029;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.manifest-title {
    font-size: 42px;
    line-height: 1.25;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 24px;
}

.manifest-title span {
    color: #FFC629;
}

.manifest-text {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

.manifest-crowd {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.manifest-crowd img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.22;
}

/* Ruta compacta */
.compact-benefits-section .header-section {
    width: 100%;
    max-width: 760px;
}

.compact-header-center {
    width: 100%;
    max-width: 820px;
}

.institutional-route-section {
    background: linear-gradient(180deg, rgba(17,17,17,0.96) 0%, rgba(26,26,26,0.96) 100%);
}

.institutional-route-section .container {
    max-width: 1600px;
}

.compact-brands-row {
    margin-top: 32px;
}

.benefits-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin-top: 56px;
}

.benefit-grid-card {
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    padding: 24px 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-grid-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,198,41,0.55);
    background: rgba(255,255,255,0.13);
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

.benefit-grid-card .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(234,0,41,0.15);
}

.benefit-grid-card p {
    margin: 0;
    color: #FFFFFF;
    font-size: 17px;
    line-height: 1.45;
}

/* Ajustes bienestar */
#bienestar .institutional-header-center {
    margin-bottom: 28px;
}

#bienestar .institutional-container {
    margin-bottom: 72px;
    align-items: center;
    gap: 96px;
}

#bienestar .image-row {
    height: 520px;
    max-height: 520px;
}

#bienestar .institutional-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 520px;
}

#bienestar .institutional-image.active {
    height: 520px;
}

#bienestar .info-column {
    justify-content: center;
    gap: 12px;
    padding-left: 40px;
}

#bienestar .image-overlay {
    display: none;
}

@media (max-width: 1200px) {
    .benefits-grid-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .benefits-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .manifest-section {
        padding: 80px 20px 110px 20px;
    }

    .manifest-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .manifest-text {
        font-size: 16px;
    }

    .manifest-crowd img {
        width: 160%;
        max-width: none;
        margin-left: -30%;
        opacity: 0.16;
    }

    .benefits-grid-5 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-grid-card {
        min-height: auto;
        padding: 20px 18px;
    }

    .benefit-grid-card p {
        font-size: 16px;
    }
}

/* =========================
   SECCIÓN UNIFICADA BENEFICIOS
========================= */
.unified-everyday-benefits {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.unified-subheader {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aca-yellow);
    margin-bottom: 32px;
}

/* =========================
   BENEFICIOS AGRUPADOS
========================= */
.benefits-group {
    margin-top: 36px;
}

.benefits-group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--aca-yellow);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.benefits-grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.benefits-grid-auto .benefit-grid-card {
    padding: 16px;
    min-height: auto;
    gap: 12px;
    background: var(--bg-sand);
    border: 1px solid rgba(17,17,17,0.10);
}

.benefits-grid-auto .benefit-grid-card .benefit-icon-img {
    width: 32px;
    height: 32px;
    filter: none;
}

.benefits-grid-auto .benefit-grid-card p {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-dark);
}

.benefits-grid-auto .benefit-grid-card:hover {
    border-color: var(--aca-red);
    background: var(--bg-stone);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Tarjetas con logo de marca dentro del grid */
.benefit-grid-card.brand-benefit-card {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand-logo-inline {
    max-width: 90px;
    max-height: 28px;
    object-fit: contain;
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    .benefits-grid-auto {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefits-grid-auto {
        grid-template-columns: 1fr;
    }
}

/* Cards arena: logo de marca con filtro para oscurecer sobre fondo claro */
.benefits-grid-auto .brand-logo-inline {
    filter: none;
    max-width: 90px;
    max-height: 28px;
}

/* Texto de porcentaje/oferta en cards arena: rojo ACA */
.benefits-grid-auto .benefit-grid-card.brand-benefit-card p {
    color: var(--text-dark);
}

/* =========================
   AJUSTE TIPOGRÁFICO PRICING
   Fuerza Pathway Extreme en las cards de precio
   para AUTO y MOTO.
========================= */
.pricing-sidebar,
.pricing-sidebar .sidebar-title,
.pricing-sidebar .price,
.pricing-sidebar .price span,
.pricing-sidebar .currency,
.pricing-sidebar .period {
    font-family: 'Pathway Extreme', sans-serif !important;
}

.pricing-sidebar .sidebar-title,
.pricing-sidebar .price {
    font-weight: 700;
}

.pricing-sidebar .currency,
.pricing-sidebar .period {
    font-weight: 400;
}

