@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@400;700;900&display=swap');

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #F8FAFC;
    background-attachment: fixed;
    color: #0F172A;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

/* =========================================
   HERO MINIMALISTA
   ========================================= */
.hero-section {
    background-image:
        linear-gradient(135deg, rgba(2, 6, 23, 0.75) 0%, rgba(15, 23, 42, 0.6) 100%),
        url("./img/ostra%20hero.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centrado horizontal */
    position: relative;
    overflow: hidden;
}

/* Fix para celulares donde background-attachment: fixed no funciona bien */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
    }
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Título del hero siempre en una sola línea, responsive */
.hero-title-nowrap {
    white-space: nowrap;
    font-size: clamp(2rem, 10vw, 130px);
    line-height: 0.9;
}

.hero-ostra-icon {
    height: clamp(1.6rem, 7vw, 7rem);
    width: clamp(1.6rem, 7vw, 7rem);
    margin: 0 clamp(0.4rem, 1.5vw, 1.5rem);
}

.nav-ostra-icon {
    height: 1.4rem;
    width: 1.4rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

/* Decoración minimalista lateral */
.hero-decoration {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80vh;
    height: 80vh;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* =========================================
   UI ELEMENTS
   ========================================= */
.glass-nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Texto del nav en estado transparente (blanco) */
.nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.nav-link:hover {
    color: white;
}

/* Link activo — nav transparente (sobre hero) */
.nav-link.active {
    color: white;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #5BC0BE;
    border-radius: 2px;
}

.nav-logo-text {
    color: white;
}

/* Texto del nav en estado scrolled (oscuro) */
.scrolled .nav-link {
    color: #64748B;
}

.scrolled .nav-link:hover {
    color: #0F172A;
}

/* Link activo — nav scrolled (fondo blanco) */
.scrolled .nav-link.active {
    color: #0F172A;
    font-weight: 700;
}

.scrolled .nav-link.active::after {
    background: #5BC0BE;
}

.scrolled .nav-logo-text,
.scrolled #menuBtn {
    color: #0F172A;
}

.nav-icon-filter {
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.scrolled .nav-icon-filter {
    filter: none;
}

.btn-primary {
    background: #0F172A;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: #1E293B;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #0F172A;
    border-color: white;
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    z-index: 1000;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(12deg);
}

.pulse-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

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

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
    position: relative;
    background: white;
}

.placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #CBD5E1;
    font-size: 2.5rem;
}

/* =========================================
   FILTER BUTTONS
   ========================================= */
.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #0F172A !important;
    color: white !important;
}

/* =========================================
   UTILITIES & REFINEMENTS
   ========================================= */
.bg-dot-pattern {
    background-color: #F8FAFC;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='40' viewBox='0 0 100 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 25c15-15 35-15 50 0s35 15 50 0v15H0z' fill='%230F172A' fill-opacity='0.03'/%3E%3Cpath d='M0 21c15-15 35-15 50 0s35 15 50 0v15H0z' fill='white' fill-opacity='0.6'/%3E%3Cpath d='M0 20c15-15 35-15 50 0s35 15 50 0v15H0z' fill='%23F1F5F9'/%3E%3C/svg%3E"),
        radial-gradient(rgba(15, 23, 42, 0.12) 1.5px, transparent 1.5px);
    background-size: auto, 40px 40px;
}

.premium-texture {
    background-color: #F8FAFC;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='40' viewBox='0 0 100 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 25c15-15 35-15 50 0s35 15 50 0v15H0z' fill='%230F172A' fill-opacity='0.03'/%3E%3Cpath d='M0 21c15-15 35-15 50 0s35 15 50 0v15H0z' fill='white' fill-opacity='0.6'/%3E%3Cpath d='M0 20c15-15 35-15 50 0s35 15 50 0v15H0z' fill='%23F1F5F9'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.step-card {
    background: white;
    padding: 3.5rem;
    border-radius: 40px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
}

.step-icon-bg {
    width: 64px;
    height: 64px;
    background: rgba(91, 192, 190, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5BC0BE;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.step-card:hover .step-icon-bg {
    background: #5BC0BE;
    color: white;
    transform: rotate(10deg);
}

.step-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: #0F172A;
    opacity: 0.03;
    transition: all 0.5s ease;
}

.step-card:hover .step-number {
    opacity: 0.1;
    transform: scale(1.1);
}

.review-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.1);
}

/* =========================================
   REVIEWS MARQUEE
   ========================================= */
.reviews-marquee-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    user-select: none;
}

.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F8FAFC, transparent);
}

.reviews-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F8FAFC, transparent);
}

.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee-scroll 60s linear infinite;
    width: max-content;
}

.marquee-content.reverse {
    animation: marquee-scroll-reverse 60s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 1rem));
    }
}

@keyframes marquee-scroll-reverse {
    from {
        transform: translateX(calc(-50% - 1rem));
    }

    to {
        transform: translateX(0);
    }
}

.review-card-premium {
    width: 400px;
    background: white;
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
}

.review-card-premium:hover {
    border-color: #5BC0BE;
    transform: scale(1.02);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.hover-glow-rappi:hover {
    box-shadow: 0 0 50px -10px rgba(255, 68, 31, 0.3);
    border-color: rgba(255, 68, 31, 0.4);
}

/* =========================================
   IMMERSIVE DELIVERY SPLIT
   ========================================= */
.delivery-panel {
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    cursor: pointer;
}

.delivery-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: background 0.5s ease;
    z-index: 1;
}

.delivery-panel:hover {
    background-color: rgba(15, 23, 42, 0.8);
}

@media (min-width: 768px) {
    .delivery-container {
        display: flex;
        height: 600px;
    }
}

.panel-content {
    transition: all 0.5s ease;
}

.delivery-panel:hover .panel-logo {
    transform: scale(1.15) rotate(5deg);
}

.delivery-panel:hover .panel-button {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}





.hover-scale {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-scale:hover {
    transform: scale(1.05) translateY(-5px);
}

/* =========================================
   MARINE EXPERIENCE SECTION
   ========================================= */
.seawater-gradient {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(91, 192, 190, 0.05) 100%);
}

.star-card {
    background: white;
    padding: 0;
    border-radius: 60px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.star-card-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.star-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.star-card:hover .star-card-img {
    transform: scale(1.1);
}

.star-card-content {
    padding: 3rem;
    text-align: center;
    background: white;
    z-index: 10;
}

.star-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(91, 192, 190, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.star-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.12);
}

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

.wave-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #0F172A, #5BC0BE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
    display: inline-block;
}

/* =========================================
   GALERÍA DE OSTRAS (BENTO GRID)
   ========================================= */
.galeria-ostras {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    height: 380px;
    width: 100%;
    background: #f1f5f9;
}

.galeria-item {
    position: relative;
    overflow: hidden;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:first-child {
    grid-row: span 2;
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

@media (max-width: 640px) {
    .galeria-ostras {
        height: 280px;
    }
}

.valenzuela-tech-text {
    color: #5BC0BE;
    font-weight: 800;
}

/* Mobile Nav Links */
.mobile-nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: #5BC0BE;
    transform: scale(1.1);
}

/* =========================================
   LOCAL GALERIA
   ========================================= */
.local-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.local-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.local-item {
    flex: 0 0 300px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 4px 20px -10px rgba(15, 23, 42, 0.1);
    transition: transform 0.4s ease;
}

@media (min-width: 1024px) {
    .local-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        overflow: visible;
        padding-bottom: 0;
    }

    .local-item {
        flex: none;
        height: 350px;
        /* Un poco más chico */
    }
}

.local-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.local-item:hover .local-img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .local-item {
        flex: 0 0 260px;
        height: 350px;
    }
}

@media (max-width: 640px) {
    .local-item {
        flex: 0 0 220px;
        height: 300px;
        border-radius: 16px;
    }
}

/* =========================================
   QUALITY & ORIGEN SECTION
   ========================================= */
.quality-player {
    transition: all 0.5s ease;
}

.player-main video,
.player-main img {
    transition: opacity 0.5s ease;
}

.thumb-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #f1f5f9;
}

.thumb-item.active {
    border-color: #5BC0BE;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(91, 192, 190, 0.2);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.thumb-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =========================================
   VENTANA ESPECIAL — DÍA DEL PADRE
   ========================================= */

/* Overlay */
#oa-gift-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 25, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

#oa-gift-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Card */
#oa-gift-card {
    position: relative;
    max-width: 520px;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 40px 120px -20px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(91, 192, 190, 0.1);
    transform: scale(0.82) translateY(30px);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: #0F172A;
}

#oa-gift-overlay.is-visible #oa-gift-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Imagen principal */
#oa-gift-card .gift-img-wrap {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

#oa-gift-card .gift-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradiente inferior sobre la imagen */
#oa-gift-card .gift-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    pointer-events: none;
}

/* Shimmer animado sobre la imagen */
#oa-gift-card .gift-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 70%
    );
    background-size: 200% 100%;
    animation: gift-shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gift-shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Ribbon */
#oa-gift-card .gift-ribbon {
    position: absolute;
    top: 22px;
    left: -2px;
    background: linear-gradient(90deg, #5BC0BE, #4aa8a6);
    color: #0F172A;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    padding: 7px 20px 7px 18px;
    border-radius: 0 20px 20px 0;
    box-shadow: 4px 4px 20px rgba(91, 192, 190, 0.4);
    z-index: 10;
}

#oa-gift-card .gift-ribbon::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    border-left: 6px solid #2e7d7b;
    border-bottom: 6px solid transparent;
}

/* Contenido inferior (overlay sobre imagen) */
#oa-gift-card .gift-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem 1.8rem 1.8rem;
    z-index: 5;
}

#oa-gift-card .gift-footer .gift-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #5BC0BE;
    margin-bottom: 6px;
    display: block;
}

#oa-gift-card .gift-footer .gift-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #5BC0BE, #4aa8a6);
    color: #0F172A;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(91, 192, 190, 0.35);
    white-space: nowrap;
}

#oa-gift-card .gift-footer .gift-cta-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 40px rgba(91, 192, 190, 0.5);
    background: linear-gradient(135deg, #6dd5d3, #5BC0BE);
}

/* Botón de cierre */
#oa-gift-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 1;
}

#oa-gift-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.12) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Partículas decorativas */
#oa-gift-card .gift-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

#oa-gift-card .gift-particle-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(91, 192, 190, 0.18), transparent 70%);
    top: -30px;
    right: -30px;
}

#oa-gift-card .gift-particle-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(91, 192, 190, 0.12), transparent 70%);
    bottom: 80px;
    left: -20px;
}

/* Responsive mobile */
@media (max-width: 540px) {
    #oa-gift-card {
        border-radius: 20px;
        max-width: calc(100vw - 2rem);
    }

    #oa-gift-card .gift-img-wrap {
        max-height: 75vh;
    }

    #oa-gift-card .gift-footer {
        padding: 1.2rem 1.3rem 1.4rem;
    }

    #oa-gift-card .gift-footer .gift-cta-btn {
        padding: 11px 20px;
        font-size: 10px;
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   BOTÓN FLOTANTE CIRCULAR
   ========================================= */

#oa-float-gift {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#oa-float-gift:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-text-circle {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation: rotateText 14s linear infinite;
    pointer-events: none;
}

.float-text-circle svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.float-text-circle text {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 900;
    fill: #5BC0BE;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(15, 23, 42, 0.4);
}

.float-circle-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.5), 0 0 0 3px #0F172A;
    background: #0F172A;
}

.float-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

@media (max-width: 640px) {
    #oa-float-gift {
        bottom: 20px;
        left: 20px;
        width: 70px;
        height: 70px;
    }
}