@font-face { font-family: "Inter"; font-style: normal; font-weight: 100 900; font-display: swap; src: url("/fonts/inter.woff2") format("woff2"); } :root { --brand: #0a6ebd; --brand-deep: #084e8a; --brand-soft: #e6f1fb; --brand-softer: #f2f8fd; --brand-tint: #cbe2f5; --ink: #0f1d2e; --ink-2: #2a3b4f; --muted: #5a6b7f; --muted-2: #8595a7; --line: #dde6ef; --line-2: #eef3f8; --bg: #f7fafd; --bg-2: #eef3f8; --bg-3: #e6edf5; --green: #2a9d6f; --green-deep: #1d7a55; --green-soft: #e1f3ea; --red: #d6453f; --red-soft: #fbe5e3; --amber: #d9920c; --amber-soft: #fbeecd; --sun: #ffb703; --color-ocean: var(--brand); --color-ocean-dark: var(--brand-deep); --color-ocean-light: var(--brand-tint); --color-sand: #f4e8c1; --color-sand-dark: #d4a574; --color-sun: var(--sun); --color-danger: var(--red); --color-success: var(--green); --color-text: var(--ink); --color-text-light: var(--muted); --color-bg: #ffffff; --color-bg-alt: var(--bg-2); --color-border: var(--line); --font-stack: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; --f-display: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif; --max-width: 1200px; --container-max: 1200px; --radius: 12px; --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-pill: 999px; --shadow-sm: 0 1px 2px rgba(15,29,46,.04), 0 1px 3px rgba(15,29,46,.03); --shadow: 0 4px 16px rgba(15,29,46,.06), 0 1px 3px rgba(15,29,46,.04); --shadow-lg: 0 12px 40px rgba(10,110,189,.12), 0 2px 6px rgba(15,29,46,.05); --shadow-brand: 0 8px 28px rgba(10,110,189,.22); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; } body { font-family: var(--font-stack); color: var(--color-text); background: var(--bg); line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; position: relative; } body::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 560px; z-index: -1; pointer-events: none; background: radial-gradient(circle, rgba(10,110,189,.13) 1px, transparent 1px) 0 0 / 22px 22px, linear-gradient(180deg, var(--brand-soft) 0%, rgba(230,241,251,.35) 45%, transparent 100%); -webkit-mask-image: linear-gradient(180deg, #000 65%, transparent 100%); mask-image: linear-gradient(180deg, #000 65%, transparent 100%); } img { max-width: 100%; height: auto; display: block; } a { color: var(--brand); text-decoration: none; transition: color .15s; } a:hover { color: var(--brand-deep); text-decoration: underline; } :is(h1,h2,h3,h4,h5,h6) em { font-style: normal; color: var(--brand); } .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); } .site-header { position: -webkit-sticky; position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); } .nav-container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 64px; } .logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; text-decoration: none; } .logo::before { content: ""; width: 32px; height: 32px; flex: 0 0 auto; border-radius: 9px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='17.5' cy='6.5' r='2.6' fill='%23ffffff'/%3E%3Cpath d='M2 14c2.2 0 2.2 1.5 4.5 1.5S8.7 14 11 14s2.2 1.5 4.5 1.5S17.7 14 20 14'/%3E%3Cpath d='M2 19c2.2 0 2.2 1.5 4.5 1.5S8.7 19 11 19s2.2 1.5 4.5 1.5S17.7 19 20 19'/%3E%3C/svg%3E") center / 19px no-repeat, linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); box-shadow: 0 4px 12px rgba(10,110,189,.30); } .logo:hover { color: var(--brand); text-decoration: none; } .nav-toggle { display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; } .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink-2); border-radius: 1px; } .search-toggle { display: none; align-items: center; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink-2); } .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(255,255,255,.97); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); padding: 0.5rem 0; box-shadow: var(--shadow); border-bottom: 1px solid var(--line); } .nav-links.open { display: block; } .nav-links a { display: block; color: var(--ink-2); padding: 0.75rem 1.5rem; text-decoration: none; font-size: 0.95rem; font-weight: 500; } .nav-links a:hover { background: var(--brand-soft); color: var(--brand); text-decoration: none; } .breadcrumb { max-width: var(--max-width); margin: 0 auto; width: 100%; padding: 0.85rem 1.5rem; font-size: 0.82rem; text-align: left; } .breadcrumb ol { list-style: none; display: flex; flex-wrap: nowrap; gap: 0; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; } .breadcrumb ol::-webkit-scrollbar { display: none; } .breadcrumb li { display: flex; align-items: center; flex: 0 0 auto; white-space: nowrap; } .breadcrumb li + li::before { content: '›'; margin: 0 0.5rem; color: var(--muted-2); } .breadcrumb a { color: var(--muted); } .breadcrumb a:hover { color: var(--brand); } .breadcrumb [aria-current] { color: var(--ink); font-weight: 600; } .main-content { max-width: var(--max-width); margin: 0 auto; padding: 1.5rem; width: 100%; flex: 1; } @media (max-width: 600px) { .main-content { padding: 1.35rem 0.7rem; } .breadcrumb { padding: 0.7rem 1.1rem; } } .page-header { margin-bottom: 1.75rem; } .page-header h1 { font-family: var(--f-display); font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; color: var(--ink); } .page-header .subtitle { color: var(--muted); margin-top: 0.35rem; font-size: 1rem; } .cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; } .card-playa { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s; } .card-rank { position: absolute; top: .6rem; left: .6rem; z-index: 2; min-width: 1.9rem; height: 1.9rem; padding: 0 .45rem; display: inline-flex; align-items: center; justify-content: center; background: var(--brand); color: #fff; border-radius: 999px; font-family: var(--f-display); font-size: .95rem; font-weight: 800; box-shadow: 0 2px 8px rgba(10, 40, 80, .28); } .ranking-nota { margin: 2rem 0 0; padding: 1.1rem 1.3rem; background: var(--brand-softer); border: 1px solid var(--line); border-radius: var(--r-lg); } .ranking-nota h2 { font-size: 1.05rem; margin: 0 0 .45rem; } .ranking-nota p { margin: 0; color: var(--ink-2); font-size: .93rem; line-height: 1.65; max-width: 90ch; } .card-playa:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand-tint); } .card-playa a { color: inherit; text-decoration: none; display: block; } .card-img { width: 100%; height: 190px; background: linear-gradient(135deg, var(--brand-soft), var(--brand-tint)); overflow: hidden; } .card-img picture { display: block; width: 100%; height: 100%; } .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; } .card-playa:hover .card-img img { transform: scale(1.04); } .card-img-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 2.5rem; font-weight: 800; color: var(--brand); opacity: 0.35; } .card-body { padding: 1rem; } .card-title { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; color: var(--ink); margin-bottom: 0.2rem; } .card-location { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.6rem; } .card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.5rem; } .card-meta { font-size: 0.8rem; color: var(--muted); } .tag { display: inline-flex; align-items: center; padding: 0.2rem 0.6rem; border-radius: var(--r-pill); font-size: 0.72rem; font-weight: 600; letter-spacing: .02em; background: var(--bg-2); color: var(--muted); border: 1px solid var(--line); } .tag-azul { background: var(--brand-soft); color: var(--brand-deep); border-color: var(--brand-tint); } .tag-nudismo { background: var(--amber-soft); color: var(--amber); border-color: #f3dca6; } .tag-perros { background: #e3f3f1; color: #0e7c70; border-color: #bfe3dd; } .tag-tipo { background: var(--brand); color: #fff; border-color: var(--brand); font-weight: 700; } .ficha-header { margin-bottom: 1.5rem; } .ficha-header h1 { font-family: var(--f-display); font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); } .ficha-location { color: var(--muted); font-size: 0.98rem; margin-top: .15rem; } .ficha-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; } .badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.32rem 0.8rem; border-radius: var(--r-pill); font-size: 0.75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; } .badge-azul { background: var(--brand); color: white; } .badge-nudismo { background: var(--amber-soft); color: var(--amber); } .badge-perros { background: #d8efec; color: #0e7c70; } .badge-protegido { background: var(--green-soft); color: var(--green-deep); } .ficha-gallery { margin-bottom: 1.5rem; overflow: hidden; border-radius: var(--r-lg); } .ficha-gallery picture { display: block; } .ficha-gallery img { width: 100%; border-radius: var(--r-lg); max-height: 420px; object-fit: cover; box-shadow: var(--shadow-sm); } .ficha-gallery .gallery-thumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; } .gthumb { padding: 0; border: 2px solid transparent; border-radius: 8px; background: none; cursor: pointer; line-height: 0; overflow: hidden; transition: border-color .15s; } .gthumb img { width: 84px; height: 58px; max-height: none; object-fit: cover; border-radius: 6px; box-shadow: none; } .gthumb:hover, .gthumb.active { border-color: var(--brand); } .lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(8,18,32,.93); display: flex; align-items: center; justify-content: center; padding: 2rem; } .lightbox[hidden] { display: none; } .lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; max-width: 94vw; } .lb-img { max-width: 94vw; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 12px 50px rgba(0,0,0,.55); } .lb-credit { color: rgba(255,255,255,.85); font-size: 0.82rem; text-align: center; margin: 0; } .lb-close { position: absolute; top: 0.8rem; right: 1.1rem; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; padding: 0.1rem 0.5rem; } .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.14); border: 0; color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; } .lb-prev { left: 1rem; } .lb-next { right: 1rem; } .lb-nav:hover, .lb-close:hover { background: rgba(255,255,255,.28); } @media (max-width: 600px) { .lb-nav { width: 40px; height: 40px; font-size: 1.6rem; } .lb-close { font-size: 2rem; } } .info-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.5rem; } .info-card { background: #fff; border-radius: var(--r-lg); padding: 1.25rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); } .info-card h2, .info-card h3 { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.85rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); } .info-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; border-bottom: 1px solid var(--line-2); font-size: 0.9rem; } .info-row:last-child { border-bottom: none; } .info-label { color: var(--muted); } .info-value { font-weight: 600; text-align: right; color: var(--ink-2); } .servicios-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 0.7rem 0.35rem; } .servicio-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.42rem; padding: 0.2rem 0.1rem; font-size: 0.72rem; } .servicio-icon { width: 48px; height: 48px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--brand-soft, #e3f0fb); color: var(--brand-deep, #0a6ebd); border-radius: 50%; } .servicio-icon .ico { width: 22px; height: 22px; } .servicio-label { line-height: 1.22; color: var(--muted, #6b7a88); } .no-servicios { color: var(--muted); font-size: 0.9rem; } .section { margin-bottom: 2.25rem; } .section h2 { font-family: var(--f-display); font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--brand-tint); } .locations-grid { display: grid; grid-template-columns: 1fr; gap: 0.6rem; } .location-link { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.8rem 1.1rem; background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); color: var(--ink-2); text-decoration: none; font-weight: 500; box-shadow: var(--shadow-sm); transition: transform .15s, border-color .15s, box-shadow .15s, color .15s; } .location-link:hover { transform: translateX(2px); border-color: var(--brand); color: var(--brand); text-decoration: none; box-shadow: var(--shadow); } .location-count { background: var(--brand-soft); color: var(--brand-deep); padding: 0.18rem 0.65rem; border-radius: var(--r-pill); font-size: 0.8rem; font-weight: 700; flex-shrink: 0; transition: background .15s, color .15s; } .location-link:hover .location-count { background: var(--brand); color: #fff; } .hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%); color: white; padding: 3rem 1.5rem; border-radius: var(--r-xl); margin-bottom: 2.5rem; text-align: center; box-shadow: var(--shadow-lg); } .hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background: radial-gradient(circle, rgba(255,255,255,.10) 1px, transparent 1px) 0 0 / 22px 22px; -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(120% 90% at 50% 0%, #000, transparent 75%); } .hero > * { position: relative; z-index: 1; } .hero h1 { font-family: var(--f-display); font-size: 1.9rem; font-weight: 800; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 0.6rem; } .hero p { opacity: 0.92; font-size: 1.05rem; max-width: 620px; margin: 0 auto; } .hero-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; margin-top: 1.75rem; } .hero-stat { text-align: center; } .hero-stat-number { display: block; font-family: var(--f-display); font-size: 1.9rem; font-weight: 800; color: var(--sun); letter-spacing: -.02em; } .hero-stat-label { font-size: 0.8rem; opacity: 0.88; text-transform: uppercase; letter-spacing: 0.06em; } .site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 2.5rem 0; margin-top: auto; font-size: 0.88rem; } .footer-container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; } .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 1.75rem 2rem; align-items: start; } .footer-col { min-width: 0; } .footer-col h3 { margin: 0 0 0.9rem; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; } .footer-col ul { list-style: none; margin: 0; padding: 0; } .footer-col li { margin: 0 0 0.55rem; } .footer-col a { color: rgba(255,255,255,0.78); font-weight: 500; } .footer-col a:hover { color: #fff; text-decoration: none; } .footer-brand .footer-logo { display: inline-block; font-family: var(--f-display); font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; } .footer-tagline { margin: 0 0 1rem; line-height: 1.5; color: rgba(255,255,255,0.66); max-width: 32ch; } .footer-cta { display: flex; flex-wrap: wrap; gap: 0.5rem; } .footer-cta a { display: inline-block; padding: 0.4rem 0.85rem; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.92); font-weight: 600; font-size: 0.82rem; } .footer-cta a:hover { background: var(--brand); border-color: var(--brand); color: #fff; text-decoration: none; } .footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); } .copyright { margin: 0; opacity: 0.55; } .footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; } .footer-legal a { color: rgba(255,255,255,0.7); font-weight: 500; } .footer-legal a:hover { color: #fff; text-decoration: none; } @media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } .footer-brand { grid-column: 1 / -1; } } @media (max-width: 520px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1.5rem; } .footer-brand { grid-column: 1 / -1; } .footer-bottom { justify-content: center; text-align: center; } } @media (max-width: 360px) { .footer-grid { grid-template-columns: 1fr; } } .widget-meteo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } .info-grid.info-grid-clima { grid-template-columns: 1fr; } .info-grid-clima .widget-meteo { grid-template-columns: repeat(6, 1fr); gap: 0.6rem; } @media (max-width: 760px) { .info-grid-clima .widget-meteo { grid-template-columns: repeat(3, 1fr); } } .info-card .widget-meteo-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } @media (max-width: 680px) { .info-card .widget-meteo-5 { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 460px) { .info-card .widget-meteo-5 { grid-template-columns: repeat(2, 1fr); } } .meteo-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; text-align: center; padding: 0.6rem 0.45rem; background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); transition: transform .15s, box-shadow .15s, border-color .15s; } .meteo-item:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,110,189,.1); border-color: var(--brand-tint); } .meteo-value { font-family: var(--f-display); font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); display: block; line-height: 1.1; } .meteo-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; } .meteo-value-sm { font-size: 1rem; } .escena { position: relative; overflow: hidden; background: #a6e0fb; } .escena-svg { display: block; width: 100%; height: 100%; } .sc-obj { transform-box: fill-box; transform-origin: 50% 100%; transition: transform .18s ease; cursor: pointer; pointer-events: bounding-box; } .sc-obj:hover { transform: scale(1.16); } .sc-obj:hover, .sc-obj:hover * { animation-play-state: paused; } .sc-tip { position: fixed; z-index: 9999; background: #1f2937; color: #fff; font-size: .78rem; font-weight: 600; line-height: 1.25; padding: 5px 10px; border-radius: 6px; pointer-events: none; box-shadow: 0 4px 14px rgba(0,0,0,.22); max-width: min(260px, calc(100vw - 20px)); transform: translateY(-50%); } .sc-tip[hidden] { display: none; } .sc-rays { animation: scSpin 90s linear infinite; } .sc-cloud { animation: scDrift 60s ease-in-out infinite alternate; } .sc-bird { transform-box: fill-box; transform-origin: center; animation: scBird 20s linear infinite; animation-fill-mode: backwards; } .sc-bird-flap { transform-box: fill-box; transform-origin: center; animation: scFlapWing .5s ease-in-out infinite; } .sc-wave-1 { animation: scWave1 11s linear infinite; } .sc-wave-2 { animation: scWave2 14s linear infinite; } .sc-boat { transform-box: fill-box; transform-origin: center; animation: scBob 5.5s ease-in-out infinite; } .sc-surfer { transform-box: fill-box; transform-origin: center; animation: scBob 3.6s ease-in-out infinite; } .sc-windsurf { transform-box: fill-box; transform-origin: center; animation: scBob 3s ease-in-out infinite; } .sc-swimmer { transform-box: fill-box; transform-origin: center; animation: scBob 4.2s ease-in-out infinite; } .sc-jelly { transform-box: fill-box; transform-origin: center; animation: scJelly 6s ease-in-out infinite; } .sc-star { animation: scTwinkle 4.5s ease-in-out infinite; } .sc-wind { animation: scWind 9s linear infinite; } .sc-rain { transform-box: fill-box; animation: scRain .6s linear infinite; } .sc-flag { transform-box: fill-box; transform-origin: left center; animation: scFlag 1.8s ease-in-out infinite; } @keyframes scSpin { to { transform: rotate(360deg); } } @keyframes scDrift { from { transform: translateX(-26px); } to { transform: translateX(34px); } } @keyframes scBird { 0% { transform: translate(-90px, 6px); } 50% { transform: translate(620px, -10px); } 100% { transform: translate(1330px, 6px); } } @keyframes scFlapWing { 0%, 100% { transform: scaleY(1.2); } 50% { transform: scaleY(.5); } } @keyframes scWave1 { to { transform: translateX(-300px); } } @keyframes scWave2 { to { transform: translateX(-360px); } } @keyframes scBob { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-3px) rotate(1.5deg); } } @keyframes scJelly { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } } @keyframes scTwinkle { 0%,100% { opacity: .9; } 50% { opacity: .35; } } @keyframes scWind { 0% { transform: translateX(-40px); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateX(1240px); opacity: 0; } } @keyframes scRain { to { transform: translateY(16px); } } @keyframes scFlag { 0% { transform: scaleX(1) skewY(0deg); } 20% { transform: scaleX(.96) skewY(-3deg); } 40% { transform: scaleX(.9) skewY(1.5deg); } 60% { transform: scaleX(.94) skewY(3deg); } 80% { transform: scaleX(.97) skewY(-1.5deg); } 100% { transform: scaleX(1) skewY(0deg); } } @media (prefers-reduced-motion: reduce) { .sc-rays, .sc-cloud, .sc-bird, .sc-bird-flap, .sc-wave-1, .sc-wave-2, .sc-boat, .sc-surfer, .sc-windsurf, .sc-swimmer, .sc-jelly, .sc-star, .sc-wind, .sc-rain, .sc-flag { animation: none !important; } } .estado-escena-banner { border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; margin: 0.2rem 0 1rem; } .estado-escena-banner .escena { aspect-ratio: 1200 / 300; margin: 0; border: 0; border-radius: 0; } @media (max-width: 900px) { .estado-escena-banner .escena { aspect-ratio: 5 / 2; } } @media (max-width: 600px) { .estado-escena-banner { width: 100vw; position: relative; left: 50%; margin-left: -50vw; border-radius: 0; border-left: 0; border-right: 0; } .estado-escena-banner .escena { aspect-ratio: 3 / 1; } } .estado-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 1rem; margin: 0 0 1.1rem; align-items: stretch; } .estado-col { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; padding: 1rem 1.1rem; } .estado-radar { align-items: center; } .estado-radar .radar { width: 100%; max-width: 270px; height: auto; } .estado-indice { gap: 0.55rem; } .estado-indice .radar-score { margin: 0; } .estado-indice .radar-legend { margin: 0; } @media (max-width: 860px) { .estado-grid { grid-template-columns: 1fr; } } .estado-indice-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 1.1rem 1.25rem; margin: 0 0 1.1rem; } .eic-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.15rem 0.5rem; } .eic-head .rs-num { font-size: 2.7rem; font-weight: 800; line-height: 1; } .eic-head .rs-max { font-size: 1rem; font-weight: 600; color: var(--text-muted, #6b7a88); } .eic-head .rs-grade { font-size: 1.05rem; font-weight: 700; } .eic-head .rs-lbl { width: 100%; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted, #6b7a88); } .estado-indice-card .rs-frase { margin: 0.5rem 0 0.95rem; font-size: 0.92rem; color: var(--text, #2a3b4a); } .eic-factores { display: flex; flex-direction: column; gap: 0.5rem; } .eic-fac { display: grid; grid-template-columns: 4.2rem 1fr 3.7rem; align-items: center; gap: 0.6rem; } .eic-fac-lbl { font-size: 0.85rem; color: var(--text-muted, #6b7a88); } .eic-fac-bar { height: 8px; background: var(--bg-2); border-radius: 5px; overflow: hidden; } .eic-fac-fill { display: block; height: 100%; border-radius: 5px; transition: width 0.4s ease; } .eic-fac-val { font-size: 0.9rem; font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; } @media (max-width: 480px) { .eic-fac { grid-template-columns: 3.6rem 1fr 3.4rem; gap: 0.45rem; } } .acc-ruta { margin: 0.7rem 0 0.2rem; padding: 0.6rem 0.75rem; background: var(--bg-2); border-radius: var(--r-md, 8px); } .acc-ruta-datos { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.35rem; } .acc-ruta-d { font-size: 0.95rem; } .acc-ruta-org { margin: 0.35rem 0 0; font-size: 0.8rem; color: var(--text-muted, #6b7a88); } .acc-dif-bajo { background: #d8f3e0; color: #0f7a3d; } .acc-dif-medio { background: #fff0cc; color: #9a6b00; } .acc-dif-alto { background: #fde0e0; color: #b81f1f; } .fondo-tipo { margin: 0.3rem 0 0.5rem; font-size: 1.05rem; } .fondo-posidonia { color: #0f7a3d; font-weight: 600; font-size: 0.92rem; } .prediccion-dias { margin-top: 1.25rem; } .prediccion-dias h3 { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; font-weight: 700; } .prediccion-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: 0.55rem; } .prediccion-dia { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; text-align: center; padding: 0.85rem 0.45rem; background: linear-gradient(180deg, var(--brand-soft), #fff); border-radius: var(--r-md); border: 1px solid var(--line); } .prediccion-fecha { font-size: 0.82rem; font-weight: 700; color: var(--ink); text-transform: capitalize; } .prediccion-ico { color: var(--brand); display: inline-flex; } .prediccion-ico .ico { width: 26px; height: 26px; } .prediccion-estado { font-size: 0.72rem; color: var(--muted); } .prediccion-temp { font-size: 0.85rem; color: var(--ink-2); } .prediccion-temp strong { color: var(--ink); font-weight: 800; } .indice-playa { display: flex; align-items: center; gap: 0.85rem; margin: 0.6rem 0; } .indice-bar { flex: 1; height: 9px; background: var(--bg-3); border-radius: var(--r-pill); overflow: hidden; } .indice-fill { height: 100%; border-radius: var(--r-pill); transition: width 0.4s; } .indice-score { font-family: var(--f-display); font-size: 1.3rem; font-weight: 800; min-width: 2.5rem; text-align: center; color: var(--brand-deep); } .calidad-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: var(--r-md); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.75rem; } .calidad-excelente { background: var(--green-soft); color: var(--green-deep); } .calidad-buena { background: var(--brand-soft); color: var(--brand-deep); } .calidad-suficiente { background: var(--amber-soft); color: var(--amber); } .calidad-insuficiente { background: var(--red-soft); color: var(--red); } .calidad-year { font-weight: 400; font-size: 0.8rem; opacity: 0.8; } .calidad-pending { color: var(--muted); font-size: 0.9rem; font-style: italic; } .calidad-hist { margin-top: 0.9rem; } .calidad-hist-lbl { display: block; font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 0.45rem; } .calidad-hist-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; } .calidad-chip { padding: 0.3rem 0.65rem; border-radius: var(--r-pill); font-size: 0.78rem; font-weight: 500; } .calidad-chip.calidad-pending { background: var(--bg-3); color: var(--muted); font-style: normal; } .info-card h2 { display: flex; align-items: center; gap: 0.5rem; } .info-card h2 .ico { color: var(--brand); width: 22px; height: 22px; } .guia-content { font-size: 0.98rem; line-height: 1.75; color: var(--ink-2); } .guia-content h2 { font-family: var(--f-display); font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); margin: 1.75rem 0 0.75rem; } .guia-content h3 { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 1.4rem 0 0.5rem; } .guia-content p { margin-bottom: 0.85rem; } .guia-content ul { margin: 0.5rem 0 1.1rem 1.5rem; } .guia-content li { margin-bottom: 0.35rem; } .guia-content strong { color: var(--ink); font-weight: 700; } .guia-content a { color: var(--brand); font-weight: 500; } .guia-content a:not([class]), .listado-intro a:not([class]), .listado-cuerpo a:not([class]), .ficha-intro a:not([class]) { color: var(--brand); font-weight: 500; text-decoration: underline; text-underline-offset: .15em; text-decoration-thickness: 1px; } .guia-content a:not([class]):hover, .listado-intro a:not([class]):hover, .listado-cuerpo a:not([class]):hover, .ficha-intro a:not([class]):hover { text-decoration-thickness: 2px; } .guia-hero { margin: 0 0 1.6rem; } .guia-hero img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; height: auto; border-radius: var(--r-lg, 16px); border: 1px solid var(--line); background: var(--bg-2); } .guia-hero figcaption { margin-top: .45rem; font-size: .76rem; color: var(--muted); text-align: right; line-height: 1.4; } .guia-hero figcaption a { color: var(--muted); text-decoration: underline; } .guia-hero figcaption a:hover { color: var(--brand); } .guia-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.1rem; } .guia-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; } .guia-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(15,29,46,.12); border-color: var(--brand); } .guia-card-media { display: block; aspect-ratio: 16 / 10; background: var(--bg-2); overflow: hidden; } .guia-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; } .guia-card:hover .guia-card-media img { transform: scale(1.04); } .guia-card-body { display: flex; flex-direction: column; gap: .4rem; padding: 1rem 1.1rem 1.15rem; flex: 1 1 auto; } .guia-card-title { font-family: var(--f-display); font-weight: 800; font-size: 1.06rem; color: var(--ink); line-height: 1.25; letter-spacing: -.01em; } .guia-card-desc { font-size: .9rem; color: var(--muted); line-height: 1.5; flex: 1 1 auto; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; } .guia-card-cta { font-size: .88rem; font-weight: 700; color: var(--brand); margin-top: .15rem; } .medusas-alert { border-left: 4px solid var(--brand); } .medusas-nivel { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; } .medusas-badge { padding: 0.28rem 0.8rem; border-radius: var(--r-pill); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .03em; } .medusas-alto .medusas-badge { background: var(--red-soft); color: var(--red); } .medusas-medio .medusas-badge { background: var(--amber-soft); color: var(--amber); } .medusas-bajo .medusas-badge { background: var(--green-soft); color: var(--green-deep); } .medusas-date { font-size: 0.8rem; color: var(--muted); } .medusas-especies { font-size: 0.85rem; color: var(--muted); } .medusas-safe { color: var(--green-deep); font-size: 0.9rem; } .photo-credit { font-size: 0.74rem; color: var(--muted-2); margin-top: 0.3rem; text-align: right; } .distancias-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; } .distancias-list li { background: #fff; padding: 0.32rem 0.8rem; border-radius: var(--r-pill); font-size: 0.84rem; border: 1px solid var(--line); } .distancias-list .city { color: var(--muted); } .distancias-list .km { font-weight: 700; color: var(--brand); } .ad-container { margin: 1.75rem 0; text-align: center; min-height: 50px; } ::-webkit-scrollbar { width: 10px; height: 10px; } ::-webkit-scrollbar-track { background: var(--bg-2); } ::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; border: 2px solid var(--bg-2); } ::-webkit-scrollbar-thumb:hover { background: var(--brand-tint); } @media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } .locations-grid { grid-template-columns: repeat(2, 1fr); } .info-grid { grid-template-columns: repeat(2, 1fr); } .servicios-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); } .page-header h1 { font-size: 2rem; } .ficha-header h1 { font-size: 2rem; } .hero { padding: 4rem 2rem; } .hero h1 { font-size: 2.6rem; } .hero p { font-size: 1.15rem; } .hero-stat-number { font-size: 2.4rem; } } @media (min-width: 1024px) { .nav-toggle { display: none; } .nav-links { display: flex; position: static; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; border: none; padding: 0; gap: 0.15rem; } .nav-links a { padding: 0.5rem 0.85rem; border-radius: var(--r-sm); font-size: 0.9rem; } .cards-grid { grid-template-columns: repeat(3, 1fr); } .locations-grid { grid-template-columns: repeat(3, 1fr); } .info-grid { grid-template-columns: repeat(2, 1fr); } .servicios-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); } .page-header h1 { font-size: 2.2rem; } .ficha-header h1 { font-size: 2.2rem; } .widget-meteo { grid-template-columns: repeat(4, 1fr); } } .hero-home { position: relative; padding: 3.5rem 0 2.5rem; text-align: center; } .hero-home-inner { max-width: 820px; margin: 0 auto; } .hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.28); margin-bottom: 1rem; } .hero-headline { font-family: var(--f-display); font-weight: 800; font-size: clamp(34px, 5.5vw, 58px); line-height: 1.05; letter-spacing: -.03em; color: var(--ink); margin: 0 0 1.1rem; } .hero-headline em { font-style: normal; color: var(--brand); } .hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin: 0 auto 1.75rem; line-height: 1.55; } .search-pill { display: flex; align-items: center; gap: .25rem; background: #fff; border: 1.5px solid var(--brand-tint); border-radius: var(--r-pill); padding: 6px 6px 6px 18px; max-width: 620px; margin: 0 auto; box-shadow: 0 2px 16px rgba(10,110,189,.08), var(--shadow); transition: box-shadow .15s, border-color .15s; } .search-pill:focus-within { border-color: var(--brand); box-shadow: var(--shadow-brand); } .search-pill .search-ico { color: var(--muted-2); flex-shrink: 0; } .search-pill input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; padding: 12px; font-size: 1rem; color: var(--ink); font-family: var(--font-stack); } .search-pill input::placeholder { color: var(--muted-2); } .search-pill button { padding: 12px 22px; font-size: .95rem; font-weight: 600; background: var(--brand); color: #fff; border: none; border-radius: var(--r-pill); cursor: pointer; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; transition: opacity .15s; } .search-pill button:hover { opacity: .9; } .search-results { max-width: 620px; margin: .5rem auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow); max-height: 340px; overflow-y: auto; text-align: left; } .search-results a { display: flex; align-items: center; gap: .7rem; padding: .5rem .8rem; border-bottom: 1px solid var(--line-2); color: var(--ink); text-decoration: none; } .search-results a:last-child { border-bottom: none; } .search-results a:hover { background: var(--brand-soft); } .search-results .sr-thumb { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 9px; object-fit: cover; background: var(--brand-soft); display: block; } .search-results .sr-thumb--empty { display: block; } .search-results .sr-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1 1 auto; } .search-results .sr-name { font-weight: 600; line-height: 1.25; } .search-results .sr-loc { font-size: .8rem; color: var(--muted); line-height: 1.2; } .search-results .sr-empty { padding: .9rem 1rem; color: var(--muted); font-size: .9rem; } .hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.75rem; } .btn-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.3rem; border-radius: var(--r-pill); font-size: .9rem; font-weight: 600; text-decoration: none; border: 1px solid var(--line); background: #fff; color: var(--ink); transition: all .15s; } .btn-pill:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; } .btn-pill-primary { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--shadow-brand); } .btn-pill-primary:hover { color: #fff; transform: translateY(-1px); } .stats-strip { position: relative; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 1.75rem 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; box-shadow: var(--shadow-lg); } .stats-strip::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 20px 20px; } .stats-strip-item { position: relative; text-align: center; } .stats-strip-value { display: block; font-family: var(--f-display); font-size: 2rem; font-weight: 800; letter-spacing: -.02em; color: var(--sun); } .stats-strip-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: .25rem; } .section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; } .section-head .eyebrow { display: block; margin-bottom: .3rem; } .section-head h2 { font-family: var(--f-display); font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); border: none; padding: 0; margin: 0; } .section-head h2 em { font-style: normal; color: var(--brand); } .section-head a { font-size: .85rem; font-weight: 600; color: var(--brand); white-space: nowrap; flex-shrink: 0; } .home-tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; } .home-tool-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem; display: flex; flex-direction: column; gap: .65rem; text-decoration: none; box-shadow: var(--shadow-sm); transition: border-color .15s, box-shadow .15s, transform .15s; } .home-tool-card:hover { border-color: var(--brand-tint); box-shadow: var(--shadow); transform: translateY(-2px); } .home-tool-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; } .home-tool-title { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink); } .home-tool-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; } .home-comunidades-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; } .home-comunidad { display: flex; justify-content: space-between; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: .7rem .9rem; text-decoration: none; font-weight: 500; color: var(--ink-2); transition: all .15s; } .home-comunidad:hover { border-color: var(--brand); color: var(--brand); } .home-comunidad .cnt { font-size: .78rem; font-weight: 700; color: var(--muted); } .home-comunidad:hover .cnt { color: var(--brand); } .home-ciudades-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; } .home-ciudad { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: .8rem 1rem; text-decoration: none; box-shadow: var(--shadow-sm); transition: all .15s; } .home-ciudad:hover { border-color: var(--brand); transform: translateY(-1px); box-shadow: var(--shadow); } .home-ciudad .cn { font-family: var(--f-display); font-weight: 700; color: var(--ink); display: block; } .home-ciudad .cm { font-size: .78rem; color: var(--muted); } .home-steps { display: grid; grid-template-columns: 1fr; gap: 1rem; } .home-step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); } .home-step-num { font-family: var(--f-display); font-weight: 800; font-size: 2.5rem; line-height: 1; color: var(--brand-tint); letter-spacing: -.03em; margin-bottom: .4rem; } .home-step h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: .35rem; } .home-step p { font-size: .9rem; color: var(--muted); line-height: 1.6; } .home-block { margin-bottom: 2.5rem; } .home-seo h2 { font-size: 1.45rem; margin: 1.9rem 0 0.5rem; } .home-seo h3 { font-size: 1.12rem; margin: 1.3rem 0 0.3rem; color: var(--ink); } .home-seo p { line-height: 1.72; color: var(--ink-2, #44525e); margin: 0 0 0.95rem; } .home-seo a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; } .home-seo a:hover { color: var(--brand-deep, #0a6ebd); } @media (min-width: 640px) { .home-tools-grid { grid-template-columns: repeat(4, 1fr); } .home-comunidades-grid { grid-template-columns: repeat(3, 1fr); } .home-ciudades-grid { grid-template-columns: repeat(3, 1fr); } .home-steps { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 1024px) { .hero-home { padding: 4.5rem 0 3rem; } .home-comunidades-grid { grid-template-columns: repeat(4, 1fr); } .home-ciudades-grid { grid-template-columns: repeat(4, 1fr); } } @media (max-width: 560px) { .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; padding: 1.5rem; } } .ocean-bg { position: absolute; top: 0; left: 0; right: 0; height: 500px; z-index: -1; overflow: hidden; pointer-events: none; -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 26%, #000 60%, transparent 95%); mask-image: linear-gradient(180deg, transparent 0, #000 26%, #000 60%, transparent 95%); } .ocean-waves { position: absolute; left: 0; bottom: 0; width: 100%; height: 74%; } .ocean-waves use { fill: var(--brand); } .ocean-waves .wave-layer { will-change: transform; } .ocean-waves .wave-1 { opacity: .10; animation: tp-wave-move 30s linear infinite; } .ocean-waves .wave-2 { opacity: .065; animation: tp-wave-move 44s linear infinite; } .ocean-waves .wave-3 { opacity: .045; animation: tp-wave-move 60s linear infinite; } @keyframes tp-wave-move { from { transform: translateX(0); } to { transform: translateX(-1440px); } } @media (prefers-reduced-motion: reduce) { .ocean-waves .wave-layer { animation: none; } } .listado-intro { margin-bottom: 1.5rem; color: var(--ink-2); font-size: 0.98rem; line-height: 1.65; } .listado-intro p { margin: 0; } .listado-intro strong { color: var(--ink); font-weight: 700; } .listado-cuerpo { line-height: 1.7; border-top: 1px solid var(--line); padding-top: 1.5rem; } .listado-cuerpo h2 { font-family: var(--f-display); font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); margin: 1.75rem 0 .75rem; } .listado-cuerpo h2:first-child { margin-top: .25rem; } .listado-cuerpo h3 { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 1.4rem 0 .5rem; } .listado-cuerpo p { margin: 0 0 .85rem; } .listado-cuerpo p:last-child { margin-bottom: 0; } .guia-content ul, .listado-cuerpo ul { list-style: none; margin: .8rem 0 1.25rem; padding: 0; } .guia-content ul li, .listado-cuerpo ul li { position: relative; padding-left: 1.55rem; margin-bottom: .6rem; line-height: 1.6; } .guia-content ul li::before, .listado-cuerpo ul li::before { content: ''; position: absolute; left: .25rem; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); } .guia-content ol, .listado-cuerpo ol { margin: .8rem 0 1.25rem; padding-left: 1.4rem; } .guia-content ol li, .listado-cuerpo ol li { margin-bottom: .6rem; line-height: 1.6; padding-left: .25rem; } .guia-content ol li::marker, .listado-cuerpo ol li::marker { color: var(--brand); font-weight: 700; } .guia-content .faq, .listado-cuerpo .faq { margin-top: .6rem; } .guia-content .faq-a p, .listado-cuerpo .faq-a p { margin: 0; } .guia-content .faq-a p + p, .listado-cuerpo .faq-a p + p { margin-top: .55rem; } .related-chips { display: flex; flex-wrap: wrap; gap: 0.7rem 0.6rem; } .related-chip { display: inline-flex; align-items: center; padding: 0.45rem 0.9rem; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); color: var(--ink-2); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all .15s; } .related-chip:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; } .pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.4rem; margin: 2.25rem 0 0.5rem; } .pagination .page-link, .pagination .page-gap { display: inline-flex; align-items: center; justify-content: center; min-width: 2.4rem; height: 2.4rem; padding: 0 0.7rem; border-radius: var(--r-pill); border: 1px solid var(--line); background: #fff; color: var(--ink-2); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: all .15s; } .pagination a.page-link:hover { border-color: var(--brand); color: var(--brand); } .pagination .page-current { background: var(--brand); border-color: var(--brand); color: #fff; cursor: default; } .pagination .page-gap { border: 0; background: transparent; font-weight: 400; min-width: 1rem; } .pagination .page-prev, .pagination .page-next { font-weight: 500; } .ficha-intro { font-size: 1.02rem; line-height: 1.7; color: var(--ink-2); margin: 0 0 0.6rem; max-width: none; } .ficha-alias { font-size: 0.92rem; color: var(--muted-2); margin: 0 0 0.6rem; } .ficha-alias strong { color: var(--ink-2); font-weight: 600; } .ficha-updated { font-size: 0.78rem; color: var(--muted-2); margin: 0 0 1.5rem; } .ico { display: inline-block; vertical-align: middle; flex: 0 0 auto; } .ficha-hero { position: relative; border-radius: var(--r-lg); margin-bottom: 0.85rem; min-height: 380px; display: flex; align-items: flex-end; background: var(--bg-3); box-shadow: var(--shadow); } .ficha-hero-media { position: absolute; inset: 0; overflow: hidden; border-radius: var(--r-lg); } .ficha-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; display: block; } .ficha-hero.is-aerial .ficha-hero-media img { filter: saturate(.92); } .ficha-hero-shade { position: absolute; inset: 0; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(15,29,46,0) 16%, rgba(15,29,46,.4) 48%, rgba(15,29,46,.9) 100%); } .ficha-hero-body { position: relative; z-index: 1; padding: 1.7rem 1.5rem 1.4rem; color: #fff; width: 100%; } .ficha-hero-body h1 { color: #fff; margin: 0.2rem 0 0.65rem; font-size: 2.35rem; line-height: 1.07; text-shadow: 0 2px 14px rgba(0,0,0,.4); } .ficha-hero-loc { display: inline-flex; align-items: center; gap: 0.35rem; color: rgba(255,255,255,.93); font-weight: 600; font-size: 0.94rem; margin: 0; text-shadow: 0 1px 10px rgba(0,0,0,.45); } .ficha-hero-loc .ico { width: 18px; height: 18px; } .hero-aerial-tag { position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2; display: inline-flex; align-items: center; gap: 0.3rem; background: rgba(15,29,46,.55); color: #fff; padding: 0.3rem 0.65rem; border-radius: var(--r-pill); font-size: 0.73rem; font-weight: 600; } .hero-aerial-tag .ico { width: 15px; height: 15px; } .ficha-hero .ficha-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; } .ficha-hero .badge { display: inline-flex; align-items: center; gap: 0.32rem; background: rgba(15,29,46,.5); border: 1px solid rgba(255,255,255,.45); color: #fff; padding: 0.34rem 0.72rem; border-radius: var(--r-pill); font-size: 0.8rem; font-weight: 600; text-decoration: none; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); } .ficha-hero .badge:hover { background: rgba(15,29,46,.66); text-decoration: none; } .ficha-hero .badge .ico { width: 15px; height: 15px; } .ficha-hero .badge-azul { background: rgba(10,110,189,.85); border-color: rgba(255,255,255,.6); } .ficha-hero .badge-protegido { background: rgba(31,122,77,.82); border-color: rgba(255,255,255,.55); } .ficha-hero .badge-nudismo { background: rgba(176,116,18,.85); border-color: rgba(255,255,255,.55); } .ficha-hero .badge-perros { background: rgba(14,124,112,.86); border-color: rgba(255,255,255,.55); color: #fff; } .hero-indice { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 0.8rem; background: rgba(15,29,46,.42); padding: 0.35rem 0.9rem 0.35rem 0.4rem; border-radius: var(--r-pill); backdrop-filter: blur(4px); } .hi-gauge { position: relative; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; } .hi-gauge svg { position: absolute; inset: 0; transform: rotate(-90deg); } .hi-track { fill: none; stroke: rgba(255,255,255,.25); stroke-width: 4; } .hi-val { fill: none; stroke-width: 4; stroke-linecap: round; } .hi-num { font-weight: 800; font-size: 0.88rem; color: #fff; } .hi-lbl { font-size: 0.72rem; line-height: 1.15; color: rgba(255,255,255,.9); } .hi-lbl strong { color: #fff; font-weight: 700; } .radar-intro { color: var(--ink-2); line-height: 1.65; margin-bottom: 1.1rem; } .radar-wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; } .radar { width: 280px; max-width: 100%; height: auto; flex: 0 0 auto; } .radar-ring { fill: none; stroke: var(--line); stroke-width: 1; } .radar-axis { stroke: var(--line); stroke-width: 1; } .radar-area { fill: rgba(10,110,189,.16); stroke: var(--brand); stroke-width: 2; stroke-linejoin: round; } .radar-dot { fill: var(--brand); } .radar-lbl { font-size: 11px; font-weight: 700; fill: var(--ink); font-family: var(--f-body, inherit); } .radar-legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; flex: 1 1 220px; min-width: 200px; } .radar-legend li { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0.8rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); } .rl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); flex: 0 0 auto; } .rl-lbl { font-weight: 600; color: var(--ink); } .rl-val { margin-left: auto; color: var(--brand-deep); font-weight: 800; } .radar-side { flex: 1 1 220px; min-width: 200px; display: flex; flex-direction: column; gap: 0.7rem; } .radar-score { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.15rem 0.4rem; padding: 0.65rem 0.95rem; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-md); } .rs-num { font-family: var(--f-display); font-size: 2.3rem; font-weight: 800; line-height: 1; } .rs-max { font-size: 1rem; font-weight: 700; color: var(--muted); } .rs-lbl { flex-basis: 100%; font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; } .rs-grade { font-size: 1rem; font-weight: 800; } .rs-frase { flex-basis: 100%; font-size: 0.82rem; color: var(--ink-2); margin-top: 0.25rem; line-height: 1.4; } .mejor-hora-section h2 .ico { color: var(--brand); } .franjas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin: 0.2rem 0 0.9rem; } .franja { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; text-align: center; padding: 0.9rem 0.5rem; border-radius: var(--r-md); border: 1px solid var(--line); line-height: 1.3; } .franja-h { font-family: var(--f-display); font-size: 1.05rem; font-weight: 800; } .franja-lbl { font-size: 0.78rem; color: var(--ink-2); } .franja-ok { background: linear-gradient(180deg, #eaf7ef, #fff); border-color: #c9ecd6; } .franja-ok .franja-h { color: #1f9d57; } .franja-warn { background: linear-gradient(180deg, #fff6e6, #fff); border-color: #f6e3b0; } .franja-warn .franja-h { color: #c98a00; } .franja-peak { background: linear-gradient(180deg, #fdeceb, #fff); border-color: #f4c7c4; } .franja-peak .franja-h { color: #d0453f; } .mejor-hora-txt { font-size: 0.9rem; color: var(--ink-2); line-height: 1.6; margin: 0; } .aire-aqi { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.4rem; } .aqi-badge { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 1.4rem; font-weight: 800; color: #fff; box-shadow: 0 4px 11px rgba(0,0,0,.12); } .aqi-meta { display: flex; flex-direction: column; gap: 0.12rem; min-width: 0; flex: 1; } .aqi-label { font-size: 1.02rem; font-weight: 800; color: var(--ink); } .aqi-sub { font-size: 0.74rem; color: var(--muted); } .aqi-scale { position: relative; height: 7px; border-radius: var(--r-pill); margin-top: 0.4rem; background: linear-gradient(90deg, #2bb673 0%, #a8d04d 25%, #f5c542 50%, #f0883e 75%, #e0524d 100%); } .aqi-scale-dot { position: absolute; top: 50%; width: 13px; height: 13px; border-radius: 50%; background: #fff; border: 2.5px solid var(--ink); transform: translate(-50%, -50%); box-shadow: 0 1px 3px rgba(0,0,0,.3); } .aqi-buena { background: #2bb673; } .aqi-aceptable { background: #7cae3e; } .aqi-moderada { background: #e6a700; } .aqi-mala { background: #f0883e; } .aqi-muymala { background: #e0524d; } .aqi-extrema { background: #8e3b9c; } .aire-polen { margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid var(--line-2); } .aire-polen-lbl { display: block; font-size: 0.76rem; font-weight: 700; color: var(--ink-2); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 0.45rem; } .aire-polen-u { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); } .polen-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; } .polen-chip { font-size: 0.78rem; padding: 0.22rem 0.65rem; background: var(--green-soft); color: var(--green-deep); border-radius: var(--r-pill); } .polen-chip strong { font-weight: 800; } .ficha-stats-title, .ficha-section > h2, .ficha-section > h3 { display: flex; align-items: center; gap: 0.5rem; font-family: var(--f-display); font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); margin: 1.7rem 0 0.9rem; } .ficha-stats-title { margin-bottom: 0.35rem; } .ficha-stats-title .ico, .ficha-section > h2 .ico, .ficha-section > h3 .ico { color: var(--brand); width: 22px; height: 22px; flex: 0 0 auto; } .bandera-bano { display: flex; align-items: center; gap: 0.7rem; padding: 0.65rem 0.95rem; border-radius: var(--r-md); margin: 0 0 0.9rem; border: 1px solid var(--line); border-left: 5px solid var(--line); } .bandera-dot { width: 15px; height: 15px; border-radius: 50%; flex: 0 0 auto; } .bandera-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; } .bandera-label { font-size: 0.98rem; color: var(--ink); } .bandera-sub { font-size: 0.73rem; color: var(--muted); } .bandera-verde { border-left-color: #2e9e5b; background: #eaf7ef; } .bandera-verde .bandera-dot { background: #2e9e5b; } .bandera-amarilla { border-left-color: #e0a800; background: #fdf7e3; } .bandera-amarilla .bandera-dot { background: #e0a800; } .bandera-roja { border-left-color: #d64545; background: #fdecec; } .bandera-roja .bandera-dot { background: #d64545; } .bandera-dot.bandera-verde { background: #2e9e5b; } .bandera-dot.bandera-amarilla { background: #e0a800; } .bandera-dot.bandera-roja { background: #d64545; } .medusas-nota { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--ink-2); margin: 0 0 0.9rem; padding: 0.5rem 0.8rem; border-radius: var(--r-sm); background: var(--bg-2); border: 1px solid var(--line); } .medusas-nota .ico { width: 18px; height: 18px; flex: 0 0 auto; } .medusas-nota strong { color: var(--ink); } .medusas-bajo .ico { color: #2e9e5b; } .medusas-moderado .ico { color: #e0a800; } .medusas-alto .ico { color: #d64545; } .acts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 0.6rem; margin-top: 0.8rem; } .act { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; text-align: center; padding: 0.85rem 0.5rem; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; } .act-ico { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; } .act-ico .ico { width: 22px; height: 22px; } .act-n { font-weight: 600; color: var(--ink); font-size: 0.9rem; } .act-r { font-size: 0.8rem; font-weight: 700; } .act-ok .act-ico { background: #eaf7ef; color: #2e9e5b; } .act-ok .act-r { color: #2e9e5b; } .act-mid .act-ico { background: #fdf7e3; color: #c79100; } .act-mid .act-r { color: #c79100; } .act-no .act-ico { background: #f3f4f6; color: #9aa3ad; } .act-no .act-r { color: #9aa3ad; } .ficha-hero-body h1 .h1-geo { display: block; margin-top: 0.4rem; font-family: var(--f-body, inherit); font-size: 0.95rem; font-weight: 500; letter-spacing: 0; opacity: 0.96; } .ficha-hero-body h1 .h1-geo .ico { width: 16px; height: 16px; vertical-align: -2px; } .ficha-stats { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 0.6rem; margin: 0 0 1.2rem; } @media (max-width: 860px) and (min-width: 481px) { .ficha-stats { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); } } @media (max-width: 480px) { .ficha-stats { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); } } .stat { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 0.8rem 0.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); min-width: 0; } .stat-ico { color: var(--brand); display: inline-flex; } .stat-ico .ico { width: 24px; height: 24px; } .stat-val { font-weight: 800; font-size: 1.15rem; color: var(--ink); } .stat-lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; } .stats-caption { display: flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 600; color: var(--brand); margin: 0 0 0.5rem; } .stats-caption .ico { width: 15px; height: 15px; } .stats-freq { color: var(--muted); font-weight: 500; } .meteo-ico { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #6fb3e0, var(--brand)); color: #fff; box-shadow: 0 4px 11px rgba(10,110,189,.22); } .meteo-ico .ico { width: 18px; height: 18px; } .mt-warm .meteo-ico { background: linear-gradient(135deg, #ffb066, #ef7f2c); box-shadow: 0 4px 11px rgba(224,123,57,.28); color: #fff; } .mt-water .meteo-ico { background: linear-gradient(135deg, #5cb3ec, #0a6ebd); box-shadow: 0 4px 11px rgba(10,110,189,.28); color: #fff; } .mt-wind .meteo-ico { background: linear-gradient(135deg, #3fd0bf, #0f9b8e); box-shadow: 0 4px 11px rgba(15,155,142,.28); color: #fff; } .mt-sky .meteo-ico { background: linear-gradient(135deg, #7db8e8, #2c7fc0); box-shadow: 0 4px 11px rgba(44,127,192,.28); color: #fff; } .meteo-item.mt-warm { background: linear-gradient(180deg, #fff7f0, #fff); } .meteo-item.mt-water { background: linear-gradient(180deg, #f1f8fd, #fff); } .meteo-item.mt-wind { background: linear-gradient(180deg, #eefaf8, #fff); } .meteo-item.mt-sky { background: linear-gradient(180deg, #f2f8fc, #fff); } .serv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 0.6rem; margin-top: 0.6rem; } .serv { display: flex; flex-direction: column; gap: 0.1rem; padding: 0.7rem 0.85rem; background: var(--bg-2); border-radius: 12px; } .serv-ico { color: var(--brand); display: inline-flex; margin-bottom: 0.15rem; } .serv-ico .ico { width: 20px; height: 20px; } .serv-v { font-weight: 700; color: var(--ink); font-size: 0.98rem; } .serv-l { font-size: 0.74rem; color: var(--muted); } .mini-mapa { width: 100%; height: 300px; border: 1px solid var(--line); border-radius: var(--r-lg); display: block; } .map-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem; padding: 0.6rem 1.05rem; background: var(--brand); color: #fff; border-radius: var(--r-pill); font-weight: 600; text-decoration: none; } .map-link:hover { background: var(--brand-deep); color: #fff; text-decoration: none; } .map-link .ico { width: 18px; height: 18px; } .header-search { position: relative; display: flex; align-items: center; gap: 0.4rem; margin-left: 0.85rem; background: #fff; border: 1.6px solid var(--brand); border-radius: var(--r-pill); padding: 0.36rem 0.85rem; max-width: 320px; transition: box-shadow .15s, border-color .15s; } .header-search:focus-within { border-color: var(--brand-deep); box-shadow: 0 0 0 3px var(--brand-tint); } .header-search .search-ico { color: var(--muted); flex: 0 0 auto; } .header-search input { border: 0; background: transparent; outline: none; font-size: 0.85rem; width: 100%; color: var(--ink); min-width: 0; } .header-search-results { position: absolute; top: calc(100% + 6px); right: 0; left: auto; width: 400px; max-width: 88vw; } @media (max-width: 800px) { .nav-container { flex-wrap: wrap; height: auto; padding: 0.6rem 1.1rem 0.7rem; } .search-toggle { display: inline-flex; margin-left: auto; } .header-search { order: 5; flex: 1 1 100%; max-width: none; margin-left: 0; margin-top: 0.55rem; display: none; } .header-search.is-open { display: flex; } .header-search-results { width: 100%; max-width: none; left: 0; right: 0; } } .faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 0.5rem; background: #fff; overflow: hidden; } .faq-item summary { cursor: pointer; padding: 0.85rem 1rem; font-weight: 600; color: var(--ink); list-style: none; position: relative; padding-right: 2.2rem; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary::after { content: '+'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: var(--brand); font-weight: 400; } .faq-item[open] summary { color: var(--brand); } .faq-item[open] summary::after { content: '−'; } .faq-a { padding: 0 1rem 0.95rem; color: var(--ink-2); line-height: 1.6; } .ficha-section { margin: 1.7rem 0; } .ficha-section > h2, .ficha-section > h3 { display: flex; align-items: center; gap: 0.5rem; } .ficha-section > h2 .ico, .ficha-section > h3 .ico, .info-card h3 .ico { color: var(--brand); } .info-card h3 { display: flex; align-items: center; gap: 0.45rem; } .info-card h3 .ico { width: 20px; height: 20px; } .ficha-updated { display: inline-flex; align-items: center; gap: 0.3rem; } .ficha-updated .ico { width: 14px; height: 14px; } .ficha-protegido { background: var(--brand-softer); border: 1px solid var(--brand-soft); border-radius: var(--r-lg); padding: 1.1rem 1.3rem; } .ficha-protegido h2 { margin-top: 0; } .spec-grid { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 0.55rem; } @media (max-width: 860px) { .spec-grid { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); } } .spec { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.8rem 0.7rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); min-width: 0; } .spec-ico { color: var(--brand); } .spec-ico .ico { width: 22px; height: 22px; } .spec-val { font-weight: 700; color: var(--ink); font-size: 1.02rem; margin-top: 0.15rem; } .spec-lbl { font-size: 0.78rem; color: var(--muted); } .stat, .spec { position: relative; } .tip-mark { position: absolute; top: 6px; right: 7px; width: 15px; height: 15px; border: 0; padding: 0; font: inherit; border-radius: 50%; background: var(--bg-3); color: var(--muted); font-size: 0.64rem; font-weight: 700; display: flex; align-items: center; justify-content: center; line-height: 1; cursor: help; transition: all .15s; } .tip-mark:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; } .stat:hover .tip-mark, .spec:hover .tip-mark, .stat:focus-within .tip-mark, .spec:focus-within .tip-mark { background: var(--brand); color: #fff; } .tip { position: absolute; left: 50%; bottom: calc(100% + 9px); transform: translateX(-50%); width: max-content; max-width: 220px; background: var(--ink); color: #fff; font-size: 0.72rem; font-weight: 500; line-height: 1.4; text-align: left; text-transform: none; letter-spacing: 0; padding: 0.55rem 0.7rem; border-radius: 9px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: opacity .15s; z-index: 30; pointer-events: none; } .tip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--ink); } .stat:hover .tip, .spec:hover .tip, .stat:focus-within .tip, .spec:focus-within .tip { opacity: 1; visibility: visible; } .ad-slot { position: relative; display: flex; align-items: center; justify-content: center; margin: 1.5rem 0; background: var(--bg-2); border: 1px dashed var(--line); border-radius: var(--r-lg); color: var(--muted-2); min-height: 96px; } .ad-slot.ad-in-article { min-height: 250px; } .ad-slot-tag { font-size: 0.62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); } @media (max-width: 520px) { .ficha-hero { min-height: 300px; } .ficha-hero-body h1 { font-size: 1.65rem; } .ficha-hero-body { padding: 1.2rem 1.1rem 1.1rem; } } .ficha-badges a.badge { text-decoration: none; transition: opacity .15s, transform .15s; } .ficha-badges a.badge:hover { opacity: .9; transform: translateY(-1px); text-decoration: none; } .gsap-on .home-block, .gsap-on .stats-strip, .gsap-on .info-grid, .gsap-on .section, .gsap-on .ficha-gallery, .gsap-on .ficha-intro, .gsap-on .listado-intro, .gsap-on .cards-grid > *, .gsap-on .home-tools-grid > *, .gsap-on .home-comunidades-grid > *, .gsap-on .home-ciudades-grid > *, .gsap-on .locations-grid > * { opacity: 0; } .site-header.is-scrolled { box-shadow: var(--shadow); } @media (prefers-reduced-motion: reduce) { .gsap-on .home-block, .gsap-on .stats-strip, .gsap-on .info-grid, .gsap-on .section, .gsap-on .ficha-gallery, .gsap-on .ficha-intro, .gsap-on .listado-intro, .gsap-on .cards-grid > *, .gsap-on .home-tools-grid > *, .gsap-on .home-comunidades-grid > *, .gsap-on .home-ciudades-grid > *, .gsap-on .locations-grid > * { opacity: 1 !important; } } body { overflow-x: clip; } .hero-home { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-top: -1.5rem; overflow: hidden; padding: 5.5rem 1.5rem 4.25rem; } .hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 46%, transparent 95%); mask-image: linear-gradient(180deg, #000 0%, #000 46%, transparent 95%); } .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; } .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; } .hero-video.is-playing { opacity: .5; } .hero-media-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,106,186,.46) 0%, rgba(16,114,194,.30) 48%, rgba(150,195,235,.12) 100%); } .hero-media-blur { position: absolute; left: 0; right: 0; bottom: 0; height: 82%; pointer-events: none; -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 52%); mask-image: linear-gradient(180deg, transparent 0%, #000 52%); } .hero-home-inner { position: relative; z-index: 1; } .hero-home .hero-sub { color: var(--ink-2); } .card-img-aerea { position: relative; } .card-img-badge { position: absolute; bottom: .4rem; right: .4rem; background: rgba(10,110,189,.85); color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .02em; padding: .15rem .5rem; border-radius: 6px; } .ficha-fase { margin: 0; } .fase-titulo { display: flex; align-items: flex-start; gap: .5rem; line-height: 1.25; font-family: var(--f-display); font-size: 1.55rem; font-weight: 800; letter-spacing: -.01em; color: var(--ink); margin: 2.4rem 0 1rem; padding-top: 1.4rem; border-top: 2px solid var(--line); } .fase-titulo .ico { color: var(--brand); width: 24px; height: 24px; flex: 0 0 auto; margin-top: .12em; } @media (max-width: 640px) { .fase-titulo { font-size: 1.2rem; gap: .45rem; line-height: 1.2; margin: 1.8rem 0 .8rem; padding-top: 1.1rem; } .fase-titulo .ico { width: 19px; height: 19px; } } .fase-num { font-size: .8rem; color: var(--muted); font-weight: 600; } .hero-quick { display: flex; flex-wrap: wrap; align-items: stretch; gap: .55rem; margin-top: .8rem; } .hq-item { display: inline-flex; align-items: center; gap: .5rem; background: rgba(15,29,46,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); padding: .4rem .9rem; border-radius: var(--r-pill); color: #fff; line-height: 1.15; } .hq-item .ico { width: 18px; height: 18px; flex: 0 0 auto; opacity: .92; } .hq-item .hq-val { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; color: #fff; } .hq-item .hq-lbl { font-size: .68rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .04em; } .hq-agua .ico { color: #8fd3ff; } .hq-bandera { padding-left: .5rem; } .hq-bandera .bandera-dot { width: 13px; height: 13px; border-radius: 50%; flex: 0 0 auto; } .hq-indice { padding-left: .4rem; } .hq-oficial { display: inline-flex; align-items: center; gap: .2rem; background: #2e9e5b; color: #fff; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: .12rem .42rem; border-radius: var(--r-pill); margin-left: .15rem; } .hq-oficial .ico { width: 12px; height: 12px; color: #fff; opacity: 1; } @media (max-width: 520px) { .hero-quick { gap: .45rem; } .hq-item { flex: 1 1 calc(50% - .45rem); justify-content: center; } } .fuente-badge { display: inline-flex; align-items: center; gap: .25rem; font-size: .7rem; font-weight: 700; line-height: 1; padding: .22rem .55rem; border-radius: var(--r-pill); text-transform: none; letter-spacing: .01em; white-space: nowrap; } .fuente-badge .ico { width: 13px; height: 13px; flex: 0 0 auto; } .fuente-modelo { background: var(--brand-soft); color: var(--brand-deep); } .fuente-medido { background: var(--green-soft); color: var(--green-deep); } .fuente-oficial { background: #e3f5ea; color: #1d7a55; border: 1px solid #2e9e5b; } .fuente-eea { background: var(--amber-soft); color: var(--amber); } .dato-fuente { font-size: .75rem; color: var(--muted); } .info-card .card-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; } .info-card .card-head > h3 { margin-bottom: .85rem; padding-bottom: .6rem; } .intro-fuente { display: block; margin-top: .35rem; font-size: .8rem; font-style: normal; color: var(--muted); } .intro-fuente::before { content: ''; } .bandera-bano .bandera-oficial-sello { display: inline-flex; align-items: center; gap: .25rem; margin-left: auto; background: #e3f5ea; color: #1d7a55; border: 1px solid #2e9e5b; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; padding: .16rem .5rem; border-radius: var(--r-pill); flex: 0 0 auto; } .bandera-bano .bandera-oficial-sello .ico { width: 13px; height: 13px; color: #2e9e5b; } .bandera-bano.es-estimada .bandera-sub { font-style: italic; } .widget-surf .surf-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .8rem; } .surf-score { font-family: var(--f-display); font-size: 2.3rem; font-weight: 800; line-height: 1; color: var(--brand-deep); flex: 0 0 auto; } .surf-score small { font-size: 1rem; font-weight: 700; color: var(--muted); } .surf-estado { font-size: 1rem; font-weight: 800; text-transform: capitalize; color: var(--ink); } .surf-bar { position: relative; flex: 1; height: 9px; border-radius: var(--r-pill); overflow: hidden; background: var(--bg-3); margin-top: .35rem; } .surf-bar > span { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, #5cb3ec, var(--brand)); transition: width .4s; } .swell-dir { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; color: var(--brand); transition: transform .2s; } .swell-dir .ico { width: 16px; height: 16px; } .viento-kn { font-size: .82rem; font-weight: 700; color: var(--muted); } .viento-kn strong { color: var(--ink); font-weight: 800; } .viento-racha { font-size: .82rem; color: var(--ink-2); } .viento-racha strong { color: var(--ink); font-weight: 800; } .viento-rosa { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--line); color: var(--brand); flex: 0 0 auto; } .viento-rosa .ico { width: 24px; height: 24px; transition: transform .2s; } .deporte-semaforo { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .55rem; margin-top: .8rem; } .deporte-semaforo .ds-item { display: flex; align-items: center; gap: .4rem; padding: .4rem .7rem; border-radius: var(--r-md); border: 1px solid var(--line); background: #fff; font-size: .82rem; font-weight: 600; color: var(--ink); } .deporte-semaforo .ds-item .ico { width: 18px; height: 18px; } .deporte-semaforo .ds-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; } .deporte-semaforo .ds-ok { background: #eaf7ef; border-color: #c9ecd6; } .deporte-semaforo .ds-ok .ds-dot { background: #2e9e5b; } .deporte-semaforo .ds-mid { background: #fdf7e3; border-color: #f6e3b0; } .deporte-semaforo .ds-mid .ds-dot { background: #e0a800; } .deporte-semaforo .ds-no { background: #f3f4f6; border-color: var(--line); } .deporte-semaforo .ds-no .ds-dot { background: #9aa3ad; } .uv-curve { display: block; width: 100%; height: auto; margin: .3rem 0 .6rem; overflow: visible; } .uv-curve .uv-line { fill: none; stroke: var(--brand); stroke-width: 2; stroke-linejoin: round; } .uv-curve .uv-fill { fill: rgba(10,110,189,.12); stroke: none; } .uv-curve .uv-axis { stroke: var(--line); stroke-width: 1; } .uv-curve .uv-axis-lbl { font-size: 9px; fill: var(--muted); font-family: var(--f-body, inherit); } .uv-peak-band { fill: rgba(214,69,63,.14); stroke: none; } .uv-now-dot { fill: var(--brand-deep); stroke: #fff; stroke-width: 2; } .solar-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .4rem; } .solar-row .solar-cell { display: flex; align-items: center; gap: .45rem; padding: .5rem .8rem; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--bg-2); flex: 1 1 calc(50% - .3rem); min-width: 0; } .solar-row .solar-cell .ico { width: 26px; height: 26px; color: var(--sun); flex: 0 0 auto; } .solar-row .solar-cell strong { font-family: var(--f-display); font-weight: 800; color: var(--ink); } .solar-row .solar-cell span { font-size: .74rem; color: var(--muted); display: block; } .solar-row .solar-cell .solar-h { font-family: var(--f-display); font-size: 1.18rem; font-weight: 800; color: var(--ink); line-height: 1.1; } .solar-row .solar-cell .solar-lbl { font-size: .82rem; color: var(--muted); } .solar-luz { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: .7rem; font-size: .85rem; color: var(--ink-2); } .solar-luz b { color: var(--ink); font-weight: 800; } .solar-luz .ico { width: 16px; height: 16px; vertical-align: -3px; color: var(--sun); } .sst-spark { display: block; width: 100%; height: auto; margin: .3rem 0 .5rem; overflow: visible; } .sst-spark .sst-line { fill: none; stroke: var(--brand); stroke-width: 2; stroke-linejoin: round; } .sst-spark .sst-fill { fill: rgba(10,110,189,.12); stroke: none; } .sst-spark .sst-now { fill: var(--brand-deep); stroke: #fff; stroke-width: 2; } .sst-spark .sst-axis-lbl { font-size: 9px; fill: var(--muted); font-family: var(--f-body, inherit); } .sst-spark { height: 58px; } .sst-spark-line { fill: none; stroke: var(--brand); stroke-width: 2; stroke-linejoin: round; } .sst-spark-now { fill: var(--brand-deep, #0a6ebd); stroke: #fff; stroke-width: 1.5; } .sst-spark-axis { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--muted, #6b7a88); margin-top: 0.1rem; padding: 0 1px; } .uv-curve { height: 96px; } .uv-area { fill: rgba(245,178,80,.18); stroke: none; } .uv-curve-axis { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--muted, #6b7a88); margin-top: 0.1rem; } .surf-num { font-size: 2.3rem; font-weight: 800; line-height: 1; color: var(--brand, #0a6ebd); } .surf-num-max { font-size: 0.95rem; font-weight: 600; color: var(--muted, #6b7a88); } .surf-meta { flex: 1; min-width: 0; } .surf-bar-fill { display: block; height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--color-sun, #f0a020), var(--color-success, #1a9b54)); } .swell-dir, .viento-rosa { display: inline-flex; transform-box: fill-box; transform-origin: center; } .dep-row { display: flex; align-items: center; gap: .5rem; padding: .55rem .7rem; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--fd-tile, #fbfdff); } .dep-ico { display: inline-flex; color: var(--brand, #0a6ebd); } .dep-ico .ico, .dep-ico svg { width: 18px; height: 18px; } .dep-name { flex: 1; font-weight: 700; font-size: .88rem; color: var(--ink); } .dep-tag { font-size: 0.78rem; font-weight: 700; padding: 0.12rem 0.6rem; border-radius: 999px; background: #eef1f4; color: #6b7a88; } .dep-tag.sem-medio { background: #e3f0fb; color: #0a6ebd; } .dep-tag.sem-ok { background: #d8f3e0; color: #0f7a3d; } .dep-tag.sem-fuerte { background: #fde0e0; color: #b81f1f; } .coef-amp { font-size: 1.75rem; font-weight: 800; line-height: 1; color: var(--brand, #0a6ebd); white-space: nowrap; } .coef-meta { flex: 1; min-width: 0; } .coef-lbl { display: block; font-size: 0.8rem; color: var(--muted, #6b7a88); margin-bottom: 0.3rem; } .coef-vivas { background: #0a6ebd; } .coef-muertas { background: #8aa6bd; } .luna-ico { display: inline-flex; color: #5b6b7a; } .luna-txt { font-size: 0.92rem; } .luna-txt strong { text-transform: capitalize; } .solunar-horas { margin-top: 0.7rem; } .solunar-lbl { display: flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; } .solunar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; } .solunar-cell { display: flex; flex-direction: column; align-items: center; padding: 0.5rem; background: var(--bg-2, #f4f7fa); border-radius: var(--r-md, 8px); } .solunar-h { font-size: 1.05rem; font-weight: 700; } .solunar-c { font-size: 0.72rem; color: var(--muted, #6b7a88); text-align: center; } .sst-trend-val { font-size: 1.6rem; font-weight: 800; } .sst-trend-tag { display: inline-flex; align-items: center; gap: 0.2rem; font-size: 0.82rem; font-weight: 600; color: var(--muted, #6b7a88); } .sst-trend-up { color: #b81f1f; } .sst-trend-down { color: #0a6ebd; } .sst-spark-wrap, .uv-curve-wrap { margin: 0.2rem 0 0.5rem; } .neopreno-lbl { font-size: 0.74rem; color: var(--muted, #6b7a88); } .neopreno-txt { font-size: 1rem; } .mejor-epoca-fill { display: block; width: 100%; background: linear-gradient(0deg, var(--brand, #0a6ebd), #5aa9e0); border-radius: 3px 3px 0 0; } .mejor-epoca-opt .mejor-epoca-fill { background: linear-gradient(0deg, var(--color-success, #1a9b54), #5ed18f); } .solar-mejor-hora, .mejor-epoca { margin-top: 0.7rem; } .solar-mejor-hora h4, .mejor-epoca h4 { display: flex; align-items: center; gap: 0.4rem; font-size: 0.92rem; margin: 0 0 0.5rem; } .tp-max { font-size: 1.05rem; font-weight: 600; color: var(--muted, #6b7a88); } .tp-f-lbl { font-size: 0.8rem; color: var(--ink-2, #44525e); } .tp-f-bar { display: block; height: 6px; border-radius: 999px; background: var(--bg-3, #e6edf3); overflow: hidden; margin-top: 0.2rem; } .tp-f-fill { display: block; height: 100%; border-radius: 999px; background: var(--brand, #0a6ebd); } .mejor-epoca-bar { display: flex; align-items: flex-end; gap: 3px; height: 56px; } .mejor-epoca-mes { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; background: none; min-height: 0; border-radius: 0; } .mejor-epoca-mes::after { content: none; } .meb-fill { width: 100%; height: var(--h, 40%); background: var(--brand-tint, #bcdcf3); border-radius: 3px 3px 0 0; min-height: 3px; } .mejor-epoca-mes.is-optimo .meb-fill, .mejor-epoca-mes.es-optimo .meb-fill { background: var(--brand, #0a6ebd); } .meb-lbl, .mejor-epoca-m { font-size: 0.6rem; color: var(--muted, #6b7a88); text-align: center; text-transform: uppercase; margin-top: 2px; } .solar-ico { display: inline-flex; color: var(--brand, #0a6ebd); } .solar-h { font-size: 1.05rem; font-weight: 700; } .solar-lbl { font-size: 0.74rem; color: var(--muted, #6b7a88); } .neopreno-meta { display: flex; flex-direction: column; } .hq-ico { display: inline-flex; } .acc-nud { background: #efe2fb; color: #7a3fb0; } .acc-nudismo-txt { font-size: 0.85rem; color: var(--ink-2, #44525e); } .acc-row { gap: 0.5rem; } .stat-ok .stat-ico, .stat-ok .stat-val { color: var(--color-success, #1a9b54); } .stat-warn .stat-ico, .stat-warn .stat-val { color: #cf8a00; } .stat-danger .stat-ico, .stat-danger .stat-val { color: var(--color-danger, #d6453f); } .tag-agua-exc { background: #d8f3e0; color: #0f7a3d; } .tag-agua-buena { background: #e0f2f1; color: #00796b; } .tag-agua-reg { background: #fff0cc; color: #9a6b00; } .tag-agua-mala { background: #fde0e0; color: #b81f1f; } .tag-vig { background: #e3f0fb; color: #0a6ebd; } .tag-acc { background: #eef4ff; color: #3a5bd9; } .tag-prot { background: #eafaf0; color: #1a7a44; } html { scroll-behavior: smooth; } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } } .ficha-subnav { position: sticky; top: var(--subnav-top, 56px); z-index: 30; display: flex; gap: 0.1rem; overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg, 16px); box-shadow: var(--shadow-sm); margin: 0 0 1.3rem; padding: 0 0.35rem; scrollbar-width: thin; -webkit-overflow-scrolling: touch; } .ficha-subnav a { flex: 0 0 auto; padding: 0.65rem 0.9rem; font-size: 0.86rem; font-weight: 600; color: var(--muted, #6b7a88); white-space: nowrap; border-bottom: 2px solid transparent; text-decoration: none; transition: color .15s, border-color .15s; } .ficha-subnav a:hover { color: var(--ink-2, #44525e); } .ficha-subnav a.is-active { color: var(--brand, #0a6ebd); border-bottom-color: var(--brand, #0a6ebd); } .ficha-subnav .sub-short { display: none; } @media (max-width: 640px) { .ficha-subnav { gap: 0.05rem; padding: 0; } .ficha-subnav a { padding: 0.5rem 0.45rem; font-size: 0.78rem; } .ficha-subnav .sub-full { display: none; } .ficha-subnav .sub-short { display: inline; } } .fase-titulo[id], .stats-caption[id], #sec-estado, #sec-playa, #sec-tiempo, #sec-servicios, #sec-llegar, #sec-descubrir { scroll-margin-top: calc(var(--subnav-top, 56px) + 66px); } .sst-trend { display: inline-flex; align-items: center; gap: .3rem; font-size: .85rem; font-weight: 700; padding: .25rem .6rem; border-radius: var(--r-pill); } .sst-trend .ico { width: 15px; height: 15px; } .sst-trend-up { background: #fdecec; color: #c0392b; } .sst-trend-down { background: var(--brand-soft); color: var(--brand-deep); } .fav-btn { display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem; padding: .5rem .95rem; font-family: inherit; font-size: .9rem; font-weight: 700; line-height: 1; color: #fff; background: rgba(15,29,46,.5); border: 1.5px solid rgba(255,255,255,.7); border-radius: var(--r-pill, 999px); cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .15s, border-color .15s, transform .1s; } .fav-btn:hover { background: rgba(255,255,255,.28); } .fav-btn:active { transform: scale(.96); } .fav-btn .fav-star { font-size: 1.05rem; line-height: 1; color: #ffd54a; transition: transform .15s; } .fav-btn.is-fav { background: #ffd54a; border-color: #ffd54a; color: #5a4500; } .fav-btn.is-fav .fav-star { color: #5a4500; transform: scale(1.12); } .fav-btn:focus-visible { outline: 3px solid #ffd54a; outline-offset: 2px; } .nav-fav { display: inline-flex; align-items: center; gap: .55rem; } .nav-fav-count:empty { display: none; } .nav-fav-count { display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; min-width: 19px; height: 19px; padding: 2px 6px 0; font-size: .7rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; color: #fff; background: var(--brand, #0a6ebd); border-radius: 999px; box-shadow: 0 1px 2px rgba(0, 0, 0, .2); } .favoritos-page { max-width: 1000px; margin: 0 auto; } .favoritos-head h1 { margin: 0 0 .3rem; } .favoritos-head .fav-total { color: var(--muted, #5b6b7a); font-weight: 600; } .favoritos-intro { color: var(--muted, #5b6b7a); margin: 0 0 1.4rem; max-width: 62ch; } .favoritos-empty { text-align: center; padding: 2.5rem 1rem; border: 1.5px dashed var(--border, #d8e0e8); border-radius: var(--r-card, 16px); color: var(--muted, #5b6b7a); background: #fff; } .favoritos-empty .fav-cta { display: inline-block; margin-top: 1rem; padding: .6rem 1.2rem; background: var(--brand, #0a6ebd); color: #fff; border-radius: var(--r-pill, 999px); font-weight: 700; text-decoration: none; } .favoritos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1rem; } .fav-card { display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--border, #e4eaf0); border-radius: var(--r-card, 16px); box-shadow: 0 1px 3px rgba(0,0,0,.07); } .fav-card-media { display: block; aspect-ratio: 16/10; background: var(--brand-soft, #e8f2fb); } .fav-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; } .fav-card-noimg { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 2rem; color: var(--brand, #0a6ebd); opacity: .45; } .fav-card-body { display: flex; flex-direction: column; gap: .15rem; padding: .7rem .8rem .8rem; flex: 1; } .fav-card-name { font-weight: 700; color: var(--ink, #1b2733); text-decoration: none; line-height: 1.25; } .fav-card-name:hover { color: var(--brand, #0a6ebd); } .fav-card-loc { font-size: .85rem; color: var(--muted, #5b6b7a); } .fav-card-actions { display: flex; align-items: center; gap: .5rem; margin-top: auto; padding-top: .6rem; } .fav-card-ver { font-size: .85rem; font-weight: 700; color: var(--brand, #0a6ebd); text-decoration: none; } .fav-card-ver:hover { text-decoration: underline; } .fav-card-del { margin-left: auto; font-family: inherit; font-size: .82rem; color: var(--muted, #5b6b7a); background: none; border: none; cursor: pointer; padding: .2rem .3rem; } .fav-card-del:hover { color: #c0392b; text-decoration: underline; } @media (prefers-reduced-motion: reduce) { .fav-btn, .fav-btn .fav-star { transition: none; } } .neopreno-rec { display: flex; align-items: center; gap: .55rem; margin-top: .7rem; padding: .6rem .85rem; border-radius: var(--r-md); background: var(--bg-2); border: 1px solid var(--line); font-size: .9rem; color: var(--ink-2); } .neopreno-rec strong { color: var(--ink); font-weight: 800; } .neopreno-ico { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-deep); flex: 0 0 auto; } .neopreno-ico .ico { width: 19px; height: 19px; } .mejor-epoca-bar { margin-bottom: 1rem; } .coef-badge { display: inline-flex; align-items: baseline; gap: .3rem; font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: var(--brand-deep); } .coef-badge small { font-size: .85rem; font-weight: 700; color: var(--muted); } .coef-bar { position: relative; height: 9px; border-radius: var(--r-pill); overflow: hidden; background: var(--bg-3); margin: .5rem 0 .8rem; } .coef-fill { display: block; height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, #5cb3ec, var(--brand)); transition: width .4s; } .luna-fase { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 700; color: var(--ink); padding: .3rem .7rem; border-radius: var(--r-pill); background: var(--bg-2); border: 1px solid var(--line); } .luna-fase .ico { width: 18px; height: 18px; color: var(--muted); } .luna-fase.es-vivas { background: var(--brand-soft); color: var(--brand-deep); border-color: var(--brand-tint); } .acc-badge { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; font-weight: 700; padding: .22rem .6rem; border-radius: var(--r-pill); background: var(--green-soft); color: var(--green-deep); } .acc-badge .ico { width: 14px; height: 14px; } .acc-badge.acc-no { background: var(--bg-3); color: var(--muted); } .acc-nudismo { display: flex; align-items: center; gap: .5rem; margin-top: .7rem; padding: .55rem .85rem; border-radius: var(--r-md); background: var(--brand-softer); border: 1px solid var(--brand-soft); font-size: .88rem; color: var(--ink-2); } .acc-nudismo .ico { width: 18px; height: 18px; color: var(--brand); flex: 0 0 auto; } .acc-nudismo strong { color: var(--ink); font-weight: 800; } .puntuacion-tp { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; padding: 1.1rem 1.3rem; background: var(--brand-softer); border: 1px solid var(--brand-soft); border-radius: var(--r-lg); margin: 1rem 0; } .tp-total { display: flex; flex-direction: column; align-items: center; line-height: 1; flex: 0 0 auto; } .tp-total .tp-num { font-family: var(--f-display); font-size: 2.8rem; font-weight: 800; color: var(--brand-deep); } .tp-total .tp-num small { font-size: 1.1rem; font-weight: 700; color: var(--muted); } .tp-total .tp-etq { font-family: var(--f-display); font-size: .95rem; font-weight: 800; color: var(--brand); margin-top: .2rem; } .tp-total .tp-cap { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-top: .3rem; text-align: center; line-height: 1.25; } .tp-desglose { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .5rem .9rem; flex: 1 1 260px; min-width: 0; } .tp-factor { display: flex; flex-direction: column; gap: .25rem; } .distancias-more { margin-top: .5rem; } .distancias-more[open] .distancias-toggle::after { content: '−'; } .distancias-toggle { cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; font-weight: 700; color: var(--brand); padding: .35rem 0; } .distancias-toggle::-webkit-details-marker { display: none; } .distancias-toggle::after { content: '+'; font-size: 1.05rem; font-weight: 400; color: var(--brand); } .distancias-toggle:hover { color: var(--brand-deep); } .mareas-leyenda { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.4rem; margin: 0 0 1.5rem; padding: .7rem 1rem; background: var(--brand-softer); border: 1px solid var(--line); border-radius: var(--r-md); font-size: .9rem; color: var(--muted); } .mareas-leyenda__item { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--ink-2); } .mareas-leyenda__fecha { margin-left: auto; font-weight: 700; color: var(--brand); } .mareas-ico { font-size: .8rem; line-height: 1; } .mareas-ico--alta { color: var(--brand); } .mareas-ico--baja { color: #0a98ac; } .mareas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; } .mareas-card { background: var(--color-bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1rem 1.1rem; box-shadow: 0 1px 3px rgba(10, 40, 80, .05); transition: box-shadow .2s ease, transform .2s ease; } .mareas-card:hover { box-shadow: 0 8px 22px rgba(10, 40, 80, .1); transform: translateY(-2px); } .mareas-card__head { display: block; text-decoration: none; color: inherit; margin-bottom: .8rem; } .mareas-card__title { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 .1rem; } .mareas-card__head:hover .mareas-card__title { color: var(--brand); } .mareas-card__loc { font-size: .82rem; color: var(--muted); } .mareas-eventos { display: flex; flex-wrap: nowrap; gap: .45rem; } .mareas-ev { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; padding: .55rem .3rem; border-radius: var(--r-sm); border: 1px solid transparent; } .mareas-ev.is-alta { background: linear-gradient(160deg, var(--brand-soft), var(--brand-tint)); border-color: var(--brand-tint); } .mareas-ev.is-baja { background: linear-gradient(160deg, #e6f7fa, #d3eef3); border-color: #bce6ee; } .mareas-ev__ico { font-size: .75rem; line-height: 1; } .mareas-ev.is-alta .mareas-ev__ico { color: var(--brand-deep); } .mareas-ev.is-baja .mareas-ev__ico { color: #0a98ac; } .mareas-ev__hora { font-family: var(--f-display); font-size: 1.2rem; font-weight: 800; color: var(--ink); letter-spacing: -.5px; } .mareas-ev__meta { font-size: .64rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; line-height: 1.3; } .mareas-card__fuente { margin: .65rem 0 0; font-size: .72rem; color: var(--muted-2); } .mareas-card__fuente a { color: inherit; text-decoration: underline; text-decoration-color: rgba(10, 110, 189, .35); } .mareas-card__fuente a:hover { color: var(--brand); } @media (max-width: 1000px) { .mareas-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 560px) { .mareas-grid { grid-template-columns: 1fr; } } .mareas-semana__nota { max-width: 72ch; color: var(--ink-2); margin: 0 0 1rem; } .mareas-semana__nav { margin: 0 0 .4rem; } .msem { margin: 1.25rem 0 0; scroll-margin-top: 90px; background: var(--color-bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.1rem 1.25rem 1.25rem; box-shadow: 0 1px 3px rgba(10, 40, 80, .05); } .msem__title { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 0; } .msem__sub { margin: .15rem 0 .8rem; font-size: .8rem; color: var(--muted); } .msem__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } .msem__tabla { width: 100%; min-width: 460px; border-collapse: collapse; font-size: .92rem; } .msem__tabla th, .msem__tabla td { padding: .5rem .6rem; text-align: left; border-top: 1px solid var(--line); vertical-align: top; } .msem__tabla thead th { border-top: 0; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); white-space: nowrap; } .msem__tabla tbody th { font-weight: 700; color: var(--ink); white-space: nowrap; } .msem__tabla tr.is-hoy { background: var(--brand-softer); } .msem__dia { text-transform: capitalize; } .msem__ev { display: block; white-space: nowrap; font-variant-numeric: tabular-nums; line-height: 1.55; } .msem__ev b { font-weight: 800; color: var(--ink); } .msem__ev span { color: var(--muted); font-size: .82em; } .msem__amp { font-weight: 700; color: var(--ink-2); white-space: nowrap; } .msem__vacio { color: var(--muted-2); } .msem__badge { display: inline-block; margin-left: .3rem; padding: .1rem .45rem; border-radius: 999px; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; vertical-align: middle; } .msem__badge--hoy { background: var(--brand); color: #fff; } .msem__badge--vivas { background: #fdeacc; color: #8a5a13; } .mareas-semana__fuente { margin: 1.1rem 0 0; font-size: .75rem; color: var(--muted-2); max-width: 80ch; }