:root {
    --blue: #0069A8;     /* Azul canario (atlántico) */
    --blue-dark: #00446b; /* Azul profundo */
    --gold: #FFC400;     /* Amarillo canario (bandera) */
    --gold-light: #FFF3CC;
    --red: #cf2e2e;
    --dark: #2c2f36;
    --gray: #666;
    --light: #f4f8fc;
    --white: #fff;
    --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; background: var(--white); color: var(--dark); line-height: 1.7; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; padding: 14px 36px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 16px; transition: all .2s; border: none; cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: #e6b000; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,196,0,.35); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #b52525; }

/* NAV */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #fff; border-bottom: 1px solid #eee; padding: 10px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 46px; margin-right: 30px; }
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-phone { text-decoration: none; color: var(--dark); font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 6px; }
.nav-phone i { color: #25D366; font-size: 20px; }
.hamburger { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--dark); }

/* HERO */
.hero { background: linear-gradient(165deg, rgba(0,68,107,.85) 0%, rgba(0,105,168,.75) 45%, rgba(0,51,85,.85) 100%), url('/images/galeria/salomon-lab-resolado.jpg') center center / cover no-repeat; color: #fff; padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,196,0,.10) 0%, transparent 60%); }
.hero .container { position: relative; z-index: 1; }
.hero .logo-hero { height: 100px; margin-bottom: 20px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
.hero h1 { font-family: 'Roboto Condensed', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: 3px; }
.hero h1 span { color: var(--gold); }
.hero h2 { font-size: clamp(1rem, 2.5vw, 1.3rem); font-weight: 400; max-width: 700px; margin: 12px auto; opacity: .9; line-height: 1.6; }
.hero .btn { margin-top: 28px; }

/* SECTIONS */
section { padding: 80px 0; }
section.alt { background: var(--light); }
.section-title { font-family: 'Roboto Condensed', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 900; text-align: center; text-transform: uppercase; letter-spacing: 1px; }
.section-subtitle { text-align: center; color: var(--gray); max-width: 620px; margin: 10px auto 50px; font-size: 1.05rem; }

/* PRICE CARDS */
.prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.price-card { background: var(--white); border-radius: var(--radius); padding: 40px 30px; text-align: center; border: 2px solid #eee; transition: border-color .3s, transform .3s; box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.price-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.price-card .icon { font-size: 2.4rem; color: var(--blue); margin-bottom: 12px; }
.price-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .5px; }
.price-card .price { font-family: 'Roboto Condensed', sans-serif; font-size: 3.4rem; font-weight: 900; color: var(--dark); }
.price-card .price small { font-size: 1.3rem; font-weight: 400; color: var(--gray); }
.price-card ul { list-style: none; margin-top: 16px; color: var(--gray); font-size: .93rem; line-height: 2; }

/* ACCORDION */
.accordion { max-width: 800px; margin: 30px auto 0; }
.acc-item { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.acc-btn { width: 100%; text-align: left; padding: 18px 24px; background: none; border: none; font-size: 1.05rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--dark); transition: background .2s; text-transform: uppercase; letter-spacing: .5px; }
.acc-btn:hover { background: #eef5fc; }
.acc-btn i { transition: transform .3s; color: var(--blue); }
.acc-btn[aria-expanded="true"] i { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-body.open { max-height: 800px; }
.acc-body-inner { padding: 0 24px 20px; color: var(--gray); line-height: 1.8; }
.acc-body-inner ul { list-style: disc; padding-left: 20px; }
.acc-body-inner ul li { margin: 6px 0; }

/* MARKS */
.marks-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.mark-tag { background: var(--white); border: 1px solid #ddd; padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: .95rem; color: var(--gray); transition: all .2s; }
.mark-tag:hover { border-color: var(--gold); color: var(--dark); }

/* PICKUP */
.pickup-island-title { font-family: 'Roboto Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue-dark); margin: 40px 0 20px; padding-bottom: 8px; border-bottom: 3px solid var(--gold); display: inline-block; }
.pickup-island-title:first-of-type { margin-top: 0; }
.pickup-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.pickup-item { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; align-items: center; }
.pickup-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: var(--blue); }
.pickup-item .pickup-logo { height: 64px; max-width: 140px; width: auto; object-fit: contain; margin-bottom: 14px; }
.pickup-item h4 { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; color: var(--dark); }
.pickup-item .pickup-addr { color: var(--gray); font-size: .88rem; line-height: 1.6; margin-bottom: 10px; flex-grow: 1; }
.pickup-item .pickup-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 700; font-size: .9rem; text-decoration: none; margin-bottom: 8px; }
.pickup-item .pickup-phone:hover { color: var(--gold); }
.pickup-item .pickup-map { font-size: .82rem; color: var(--gray); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: color .2s; }
.pickup-item .pickup-map:hover { color: var(--red); }
.pickup-note { background: var(--gold-light); border-left: 4px solid var(--gold); border-radius: 8px; padding: 18px 24px; margin: 30px auto; max-width: 700px; font-size: .9rem; color: #5a4a10; line-height: 1.7; }
.pickup-note strong { color: #a07c00; }

/* ABOUT - 2 columns */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text p { margin-bottom: 14px; font-size: 1.05rem; line-height: 1.8; opacity: .9; }
.about-text p strong { color: var(--blue); font-weight: 700; }
.about-image img { width: 100%; max-width: 350px; border-radius: var(--radius); box-shadow: 0 8px 30px rgba(0,0,0,.2); display: block; margin: 0 auto; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-form { background: var(--white); border: 1px solid #eee; border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid #e5e5e5; border-radius: 8px; font-size: 1rem; font-family: 'Roboto', sans-serif; transition: border-color .2s; background: #fafafa; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; text-transform: none; font-size: .85rem; color: var(--gray); }
.form-group .checkbox-label input { width: auto; margin-top: 3px; }
.form-captcha { display: flex; align-items: center; gap: 12px; }
.form-captcha span { background: var(--gold-light); padding: 10px 16px; border-radius: 8px; font-family: monospace; font-size: 1.1rem; font-weight: 700; }
.side-info { background: var(--light); border-radius: var(--radius); padding: 36px; }
.side-info .info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.side-info .info-item i { font-size: 1.4rem; color: var(--blue); margin-top: 3px; width: 24px; text-align: center; }
.side-info .info-item strong { display: block; margin-bottom: 2px; }
.side-info .info-item p, .side-info .info-item a { color: var(--gray); text-decoration: none; }

/* MAP */
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.map-container iframe { width: 100%; height: 380px; border: 0; display: block; }

/* GALLERY */
.gallery-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.gallery-tab { padding: 10px 24px; border: 2px solid #ddd; border-radius: 50px; background: var(--white); font-weight: 600; font-size: .93rem; cursor: pointer; transition: all .2s; color: var(--gray); }
.gallery-tab:hover { border-color: var(--blue); color: var(--dark); }
.gallery-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.gallery-item { transition: opacity .3s, transform .3s; }
.gallery-item.hidden { display: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); transition: transform .3s; }
.gallery-grid img:hover { transform: scale(1.04); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: none; align-items: center; justify-content: center; z-index: 9999; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,.5); }
.lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #fff; font-size: 1rem; opacity: .85; }
.lightbox-close { position: absolute; top: 16px; right: 24px; font-size: 2.2rem; color: #fff; cursor: pointer; line-height: 1; opacity: .7; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.5rem; color: #fff; cursor: pointer; opacity: .6; transition: opacity .2s; user-select: none; }
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.gallery-caption { text-align: center; font-size: .82rem; color: var(--gray); margin-top: 6px; font-weight: 500; }

/* FOOTER */
.footer { background: var(--blue-dark); color: rgba(255,255,255,.8); padding: 50px 0 30px; text-align: center; font-size: .95rem; }
.footer a { color: var(--gold); text-decoration: none; margin: 0 14px; }
.footer a:hover { color: #fff; }
.footer .by { margin-top: 20px; font-size: .8rem; opacity: .5; }

/* FLOAT */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 62px; height: 62px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,.4); color: #fff; font-size: 32px; text-decoration: none; transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* COOKIE */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--blue-dark); color: #fff; padding: 18px 0; font-size: .9rem; transform: translateY(100%); transition: transform .4s; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.cookie-banner a { color: var(--gold); }
.btn-sm { padding: 8px 24px; border-radius: 50px; font-size: .9rem; font-weight: 600; cursor: pointer; border: none; }

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .prices-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    .container { padding: 0 16px; }

    /* Nav */
    .nav-logo img { height: 44px; margin-right: 0; }
    .nav-logo { flex: 1; justify-content: center; }
    .nav-phone { display: none; }
    .nav-links { display: none; position: absolute; top: 58px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: center; padding: 14px; gap: 10px; border-bottom: 1px solid #eee; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 16px; }
    .hamburger { display: block; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 28px; }

    /* Hero */
    .hero { padding: 100px 0 50px; }
    .hero .logo-hero { height: 75px; margin-bottom: 14px; }
    .hero h1 { font-size: 2rem; letter-spacing: 1.5px; }
    .hero h2 { font-size: 1rem; line-height: 1.5; margin: 10px auto; }
    .hero .btn { margin-top: 20px; padding: 12px 28px; font-size: 15px; }

    /* Sections */
    section { padding: 40px 0; }
    .section-title { font-size: 1.5rem; letter-spacing: .5px; }
    .section-subtitle { font-size: .95rem; margin: 10px auto 30px; }

    /* Price cards */
    .prices-grid { grid-template-columns: 1fr; gap: 16px; }
    .price-card { padding: 28px 20px; }
    .price-card .price { font-size: 2.6rem; }
    .price-card .icon { font-size: 2rem; }

    /* Accordion */
    .accordion { margin: 20px auto 0; }
    .acc-btn { padding: 14px 16px; font-size: .95rem; letter-spacing: .3px; }
    .acc-body-inner { padding: 0 16px 16px; font-size: .9rem; line-height: 1.7; }

    /* Marks */
    .mark-tag { padding: 8px 16px; font-size: .85rem; }

    /* Pickup */
    .pickup-grid { grid-template-columns: 1fr; gap: 14px; }
    .pickup-item { padding: 20px 16px; }
    .pickup-item .pickup-logo { height: 52px; max-width: 120px; }
    .pickup-island-title { font-size: 1.25rem; margin: 30px 0 14px; }
    .pickup-note { padding: 14px 16px; font-size: .85rem; }

    /* About / Contact → 1 col */
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-image { text-align: center; }
    .about-image img { max-width: 280px; }
    .about-text p { font-size: 1rem; }

    /* Contact form */
    .contact-form { padding: 22px 18px; }
    .side-info { padding: 22px 18px; }
    .side-info .info-item { margin-bottom: 16px; }
    .side-info .info-item i { font-size: 1.2rem; }

    /* Map */
    .map-container iframe { height: 280px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
    .gallery-grid img { height: 160px; }
    .gallery-tab { padding: 8px 16px; font-size: .85rem; }

    /* Footer */
    .footer { padding: 30px 0 20px; font-size: .85rem; }
    .footer a { margin: 0 8px; display: inline-block; padding: 4px 0; }

    /* WhatsApp float */
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; font-size: 26px; position: fixed; }

    /* Cookie banner */
    .cookie-banner { padding: 14px 0; font-size: .82rem; }
    .cookie-banner .container { gap: 10px; }

    /* Lightbox */
    .lightbox-nav { font-size: 1.8rem; }
    .lightbox-close { font-size: 1.8rem; top: 10px; right: 16px; }
}

/* ===== MOBILE PEQUEÑO (<420px) ===== */
@media (max-width: 420px) {
    .hero h1 { font-size: 1.7rem; letter-spacing: 1px; }
    .hero .logo-hero { height: 60px; }
    .section-title { font-size: 1.3rem; }
    .price-card .price { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery-grid img { height: 130px; }
}