:root {
    --color-navy-950: #052037;
    --color-navy-800: #032f50;
    --color-sea-700: #134d69;
    --color-gold-500: #d39955;
    --color-gold-300: #e3c8a8;
    --color-ivory-100: #ebeaea;
    --color-white: #ffffff;
    --color-text: #0c2035;
    --color-muted: #5d5f61;
    --font-display: Georgia, 'Times New Roman', serif;
    --font-body: Arial, Helvetica, sans-serif;
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4.5rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --shadow-card: 0 1rem 2.5rem rgb(5 32 55 / 12%);
    --content-max: 75rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-ivory-100);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible,
summary:focus-visible,
.button:focus-visible {
    outline: 0.2rem solid var(--color-gold-500);
    outline-offset: 0.2rem;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

.site-header {
    align-items: center;
    background: var(--color-navy-950);
    color: var(--color-white);
    display: grid;
    gap: var(--space-4);
    grid-template-columns: auto 1fr auto;
    min-height: 6.5rem;
    padding: var(--space-2) clamp(1rem, 4vw, 4rem);
    position: relative;
    z-index: 20;
}

.brand img {
    height: 5rem;
    object-fit: contain;
    width: auto;
}

.desktop-nav {
    display: flex;
    gap: clamp(1rem, 2.3vw, 2rem);
    justify-content: center;
}

.desktop-nav a,
.language-switcher a,
.mobile-nav a {
    text-decoration: none;
}

.desktop-nav a:hover,
.language-switcher a:hover,
.language-switcher [aria-current='page'],
.mobile-nav a:hover {
    color: var(--color-gold-500);
}

.header-tools,
.language-switcher {
    align-items: center;
    display: flex;
    gap: var(--space-2);
}

.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav summary {
    border: 1px solid rgb(255 255 255 / 55%);
    border-radius: var(--radius-sm);
    cursor: pointer;
    list-style: none;
    min-height: 2.75rem;
    padding: 0.55rem 0.8rem;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav nav {
    background: var(--color-navy-950);
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    display: grid;
    min-width: 13rem;
    padding: var(--space-2);
    position: absolute;
    right: 0;
    top: calc(100% + var(--space-1));
}

.mobile-nav nav a {
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
}

.hero {
    background: var(--color-navy-800);
    color: var(--color-white);
    min-height: min(47rem, calc(100vh - 6.5rem));
    overflow: hidden;
    position: relative;
}

.hero__image,
.hero__overlay {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.hero__overlay {
    background: linear-gradient(90deg, rgb(3 47 80 / 90%) 0%, rgb(3 47 80 / 55%) 42%, rgb(3 47 80 / 8%) 75%);
}

.hero__content {
    margin: 0 auto;
    max-width: var(--content-max);
    padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

.hero h1,
.section h2,
.split-section h2,
.captain h2,
.location h2,
.closing h2,
.error-page h1 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(2.75rem, 6vw, 5rem);
    margin: 0 0 var(--space-3);
    max-width: 12ch;
}

.hero__content > p:not(.eyebrow) {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 32rem;
}

.eyebrow {
    color: var(--color-gold-500);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin: 0 0 var(--space-2);
    text-transform: uppercase;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.button {
    align-items: center;
    border: 1px solid var(--color-white);
    border-radius: var(--radius-sm);
    display: inline-flex;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
}

.button--primary {
    background: var(--color-gold-500);
    border-color: var(--color-gold-500);
    color: var(--color-navy-950);
}

.button--primary:hover {
    filter: brightness(1.08);
}

.button--primary:active {
    filter: brightness(0.94);
}

.button--secondary[aria-disabled='true'] {
    cursor: not-allowed;
    opacity: 0.78;
}

.section {
    margin: 0 auto;
    max-width: var(--content-max);
    padding: var(--space-7) clamp(1.25rem, 5vw, 4rem);
}

.section-heading {
    margin: 0 auto var(--space-5);
    max-width: 47rem;
    text-align: center;
}

.section h2,
.split-section h2,
.captain h2,
.location h2,
.closing h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin: 0 0 var(--space-3);
}

.section-heading > p:last-child {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.experience-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.experience-card img {
    aspect-ratio: 4 / 2.7;
    object-fit: cover;
    width: 100%;
}

.experience-card__body {
    padding: var(--space-4);
}

.experience-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin: 0 0 var(--space-2);
}

.experience-card__meta {
    color: var(--color-gold-500);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 var(--space-1);
    text-transform: uppercase;
}

.experience-card__price {
    border-top: 1px solid rgb(5 32 55 / 15%);
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: var(--space-4) 0 var(--space-2);
    padding-top: var(--space-3);
}

.experience-card__price small {
    color: var(--color-muted);
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
}

.experience-card__note {
    color: var(--color-muted);
    font-size: 0.82rem;
    margin: var(--space-1) 0 0;
}

.included {
    margin: var(--space-6) auto;
    max-width: var(--content-max);
}

.split-section,
.captain {
    background: var(--color-navy-800);
    color: var(--color-white);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.split-section > img,
.captain > img {
    height: 100%;
    max-height: 43rem;
    object-fit: cover;
    width: 100%;
}

.split-section__content,
.captain__content {
    align-self: center;
    max-width: 42rem;
    padding: clamp(2rem, 6vw, 5rem);
}

.split-section__content > p:not(.eyebrow),
.captain__content > p:not(.eyebrow) {
    color: rgb(255 255 255 / 86%);
}

.boat {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 6vw, 5rem);
    grid-template-columns: 1.05fr 0.95fr;
}

.boat__content > p:not(.eyebrow) {
    color: var(--color-muted);
}

.boat__content h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin-top: var(--space-5);
}

.boat__image {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    object-fit: cover;
}

.boat-stats {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: var(--space-5) 0;
}

.boat-stats div {
    border-bottom: 1px solid rgb(5 32 55 / 20%);
    padding: var(--space-3) var(--space-2);
}

.boat-stats dt {
    color: var(--color-muted);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.boat-stats dd {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: var(--space-1) 0 0;
}

.feature-list {
    display: grid;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 1.4rem;
    position: relative;
}

.feature-list li::before {
    color: var(--color-gold-500);
    content: '—';
    left: 0;
    position: absolute;
}

.captain {
    background: var(--color-navy-950);
}

.captain__facts {
    border-top: 1px solid rgb(211 153 85 / 55%);
    display: grid;
    gap: var(--space-2);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: var(--space-5) 0 0;
    padding: var(--space-4) 0 0;
}

.captain__facts li {
    color: var(--color-gold-300);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.extras {
    padding-bottom: var(--space-5);
}

.extras__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.extras__list li {
    background: var(--color-white);
    border: 1px solid rgb(211 153 85 / 55%);
    border-radius: 999px;
    padding: 0.7rem 1.1rem;
}

.gallery {
    max-width: 87rem;
}

.gallery__grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery figure {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin: 0;
    overflow: hidden;
}

.gallery img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.gallery figcaption {
    font-size: 0.85rem;
    padding: var(--space-2) var(--space-3);
}

.process ol {
    counter-reset: steps;
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.process li {
    background: var(--color-white);
    border-top: 0.25rem solid var(--color-gold-500);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    padding: var(--space-5);
}

.process li > span {
    color: var(--color-gold-500);
    font-family: var(--font-display);
    font-size: 2.4rem;
}

.process h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: var(--space-2) 0;
}

.process li p {
    color: var(--color-muted);
}

.location {
    background: var(--color-sea-700);
    color: var(--color-white);
    padding: var(--space-7) clamp(1.25rem, 5vw, 4rem);
}

.location > div {
    border-left: 0.2rem solid var(--color-gold-500);
    margin: 0 auto;
    max-width: 55rem;
    padding-left: var(--space-5);
}

.location p:last-child {
    color: rgb(255 255 255 / 86%);
    max-width: 42rem;
}

.faq__list {
    margin: 0 auto;
    max-width: 55rem;
}

.faq details {
    border-bottom: 1px solid rgb(5 32 55 / 20%);
}

.faq summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    padding: var(--space-4) var(--space-5) var(--space-4) 0;
    position: relative;
}

.faq summary::after {
    color: var(--color-gold-500);
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    position: absolute;
    right: 0;
}

.faq details[open] summary::after {
    content: '−';
}

.faq details p {
    color: var(--color-muted);
    margin: 0;
    padding: 0 0 var(--space-4);
}

.closing {
    background: var(--color-navy-800);
    color: var(--color-white);
    padding: var(--space-7) clamp(1.25rem, 5vw, 4rem);
    text-align: center;
}

.closing p:not(.eyebrow) {
    margin: 0 auto var(--space-4);
    max-width: 40rem;
}

.site-footer {
    align-items: center;
    background: var(--color-navy-950);
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    padding: var(--space-4) clamp(1.25rem, 5vw, 4rem);
}

.site-footer p {
    margin: var(--space-1) 0;
}

.site-footer div p:last-child {
    color: rgb(255 255 255 / 66%);
    font-size: 0.82rem;
}

.error-page {
    align-items: center;
    background: var(--color-navy-950);
    color: var(--color-white);
    display: grid;
    min-height: 100vh;
    place-items: center;
    text-align: center;
}

@media (max-width: 70rem) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
}

@media (max-width: 56rem) {
    .experience-grid,
    .gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - var(--space-1));
    }

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

    .boat__image {
        grid-row: 1;
    }

    .process ol {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 48rem) {
    .site-header {
        min-height: 5.5rem;
    }

    .brand img {
        height: 4.25rem;
    }

    .hero {
        min-height: 0;
    }

    .hero__image {
        height: 55%;
        object-position: 58% center;
    }

    .hero__overlay {
        background: linear-gradient(180deg, rgb(3 47 80 / 4%) 17%, var(--color-navy-800) 53%);
    }

    .hero__content {
        padding-block: clamp(20rem, 72vw, 25rem) var(--space-6);
    }

    .hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

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

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

    .experience-card,
    .experience-card:last-child {
        display: grid;
        grid-template-columns: minmax(7.5rem, 34%) 1fr;
        max-width: none;
    }

    .experience-card img {
        aspect-ratio: auto;
        height: 100%;
        min-height: 16rem;
    }

    .experience-card__body {
        padding: var(--space-3);
    }

    .experience-card h3 {
        font-size: 1.4rem;
    }

    .experience-card__price {
        margin-top: var(--space-3);
    }

    .included ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .included li + li {
        border-left: 0;
    }

    .included li:nth-child(even) {
        border-left: 1px solid rgb(5 32 55 / 22%);
    }

    .split-section,
    .captain {
        grid-template-columns: 1fr;
    }

    .split-section > img,
    .captain > img {
        max-height: 25rem;
    }

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

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

    .location > div {
        padding-left: var(--space-4);
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 28rem) {
    .header-tools {
        gap: var(--space-1);
    }

    .language-switcher {
        font-size: 0.85rem;
    }

    .mobile-nav summary {
        font-size: 0.85rem;
    }

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

    .experience-card img {
        aspect-ratio: 4 / 2.7;
        min-height: 0;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Modal de Reserva Pública */
.booking-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 32, 55, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: var(--space-3);
}
.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.booking-modal-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 34rem;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.booking-modal-header {
    background: var(--color-navy-950);
    color: var(--color-white);
    padding: var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.booking-modal-header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-gold-300);
}
.close-booking-modal {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}
.booking-modal-body {
    padding: var(--space-4);
    overflow-y: auto;
}
.booking-field {
    margin-bottom: var(--space-3);
}
.booking-field label {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-navy-950);
    margin-bottom: 0.35rem;
}
.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--color-gold-500);
    box-shadow: 0 0 0 3px rgba(211, 153, 85, 0.2);
}
.booking-time-help {
    font-size: 0.8rem;
    color: #e11d48;
    margin-top: 0.25rem;
}

/* Botón flotante de WhatsApp con animación pulsante */
@keyframes whatsappPulse {
    0% { transform: scale(1); box-shadow: 0 0.5rem 1.5rem rgba(37, 211, 102, 0.4); }
    50% { transform: scale(1.06); box-shadow: 0 0.9rem 2.2rem rgba(37, 211, 102, 0.7); }
    100% { transform: scale(1); box-shadow: 0 0.5rem 1.5rem rgba(37, 211, 102, 0.4); }
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 0.5rem 1.5rem rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    z-index: 900;
    animation: whatsappPulse 3.5s infinite ease-in-out;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 0.85rem 2.2rem rgba(37, 211, 102, 0.6);
}

/* Sección "Incluido en todas las salidas" - Alineación Milimétrica con Experiencias */
.included-wrapper {
    margin: var(--space-6) auto;
    max-width: var(--content-max);
    padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.included-card {
    background: linear-gradient(135deg, var(--color-navy-950) 0%, var(--color-sea-700) 100%);
    color: var(--color-white);
    padding: var(--space-6) clamp(1rem, 3vw, 2.5rem);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.included-card h2 {
    color: var(--color-gold-300);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--space-5);
}
.included-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    border: none;
}
.included-card li {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(227, 200, 168, 0.35);
    border-radius: var(--radius-sm);
    padding: 0.85rem 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.included-card li:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold-500);
    background: rgba(255, 255, 255, 0.15);
}
.included-card li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--color-gold-500);
    color: var(--color-navy-950);
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 64rem) {
    .included-card ul {
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    }
}

/* Barra Fija Inferior en Móvil (Sticky Action Bar) */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0b2545;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.75rem 1rem;
    z-index: 850;
    box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}
.mobile-sticky-bar-content {
    display: flex;
    gap: 0.75rem;
}
.mobile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
}
.mobile-sticky-btn-book {
    background: var(--color-gold-500);
    color: var(--color-navy-950);
}
.mobile-sticky-btn-wa {
    background: #25d366;
    color: #ffffff !important;
}

@media (max-width: 48rem) {
    .mobile-sticky-bar {
        display: block;
    }
    .whatsapp-float {
        display: none !important;
    }
    body {
        padding-bottom: 4.5rem;
    }
}

/* Contenedor del Mapa Google Maps */
.map-responsive-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-top: var(--space-4);
    border: 1px solid rgba(19, 77, 105, 0.2);
}
.map-responsive-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 24rem;
    background: #0f172a;
    color: #f8fafc;
    border: 1px solid #334155;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.4);
    z-index: 9500;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cookie-banner p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #cbd5e1;
}
.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.cookie-btn-accept {
    background: var(--color-gold-500);
    color: #0b1329;
    font-weight: bold;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
}
.cookie-btn-link {
    color: #38bdf8;
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
}

/* Sección de Reseñas / Testimonios */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-4);
}
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(19, 77, 105, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-navy-950);
    font-style: italic;
    margin-bottom: 1.25rem;
}
.testimonial-author strong {
    display: block;
    color: var(--color-navy-950);
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-muted);
}


