/*
Theme Name: VitaGo
Theme URI: https://vitagopr.com
Author: Andre Gutierrez
Author URI: https://toctoc.ky/
Description: Smart Wellness Anywhere — VitaGo landing page. Blue-to-orange gradient with white text; Bebas Neue / Caveat / Inter typography. Classic WordPress theme. Developed by Toc Toc Marketing.
Version: 1.0.7
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vitago
Tags: landing-page, one-page, custom-colors, wellness
*/

/* ===========================================================
   Tokens de marca  (hex fallback + oklch para navegadores modernos)
   =========================================================== */
:root {
  /* Paleta oficial de marca VitaGo */
  --salmon: #ff8c6f;     /* principal — anaranjado / acento cálido */
  --blue-bell: #269ee3;  /* principal — azul brillante */
  --glaucous: #4979c1;   /* principal — azul profundo */
  --light-blue: #46d5e7; /* secundario — celeste */
  --pale-sky: #b9d4df;   /* secundario — celeste claro */

  --background: #0b1a2c; /* azul muy oscuro derivado del glaucous */
  --foreground: #ffffff;

  /* Alias semánticos usados en el resto del CSS */
  --vita-blue: var(--glaucous);
  --vita-orange: var(--salmon);
  --vita-ink: #14253c;

  --gradient-wrap: linear-gradient(180deg, var(--glaucous) 0%, var(--blue-bell) 42%, var(--salmon) 100%);
  --gradient-wrap-h: linear-gradient(135deg, var(--glaucous) 0%, var(--blue-bell) 45%, var(--salmon) 100%);
  /* Para las letras: el salmon entra antes y domina el último tramo, para que resalte más */
  --gradient-text: linear-gradient(120deg, var(--blue-bell) 0%, var(--salmon) 55%, var(--salmon) 100%);

  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-script: "Caveat", cursive;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ===========================================================
   Base
   =========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4, p,
figure, figcaption, blockquote {
  margin: 0;
}

address {
  font-style: normal;
}

/* ===========================================================
   Utilidades de layout
   =========================================================== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.wrap-gradient {
  background: var(--gradient-wrap);
}
.wrap-gradient-h {
  background: var(--gradient-wrap-h);
}

.gradient-text {
  background-image: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

/* Botones / CTA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, opacity 0.2s ease;
}

.btn--primary {
  background: var(--salmon);
  color: #0b1a2c;
  box-shadow: 0 10px 30px -10px rgba(255, 140, 111, 0.6);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(255, 140, 111, 0.75);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0b1a2c;
  background: color-mix(in oklab, var(--background) 85%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo,
.brand .custom-logo {
  height: 2.5rem;
  width: auto;
  display: block;
}


/* ===========================================================
   Hero
   =========================================================== */
.hero {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.badge__dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background: var(--vita-orange);
}

.hero__title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.hero__lede {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
  line-height: 1.65;
}

.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__pills {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.hero__pills span {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.25rem;
}

.hero__media {
  position: relative;
}

.hero__glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: 1.5rem;
  background: var(--gradient-wrap-h);
  opacity: 0.3;
  filter: blur(48px);
  z-index: 0;
}

.hero__img {
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.hero__tag {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  z-index: 2;
  background: var(--vita-ink);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* ===========================================================
   Secciones genéricas
   =========================================================== */
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section__head {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.section__intro {
  margin-top: 1rem;
  color: var(--pale-sky);
  line-height: 1.65;
}

/* Banda de marca / statement */
.statement {
  text-align: center;
  padding: 4.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.statement__big {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.statement__pills {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
}

.statement__pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.statement__pills span::before {
  content: "";
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 9999px;
  background: var(--vita-orange);
}

/* Grids de tarjetas */
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.grid--2 { gap: 1.25rem; }
.grid--4 { gap: 1rem; }

.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 1rem;
  padding: 1.75rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-wrap-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 45px -22px rgba(0, 0, 0, 0.7);
}

.card:hover::before {
  transform: scaleX(1);
}

.card--row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.card--row .card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.card__icon {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 0.85rem;
  margin-bottom: 1.15rem;
  color: var(--light-blue);
  background: rgba(70, 213, 231, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Acentos de ícono por sección */
#benefits .card__icon {
  color: var(--salmon);
  background: rgba(255, 140, 111, 0.14);
}

#convenience .card__icon {
  color: var(--blue-bell);
  background: rgba(38, 158, 227, 0.14);
}

.card__title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.card__text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--pale-sky);
  line-height: 1.6;
}

.card__eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--light-blue);
  margin-bottom: 0.5rem;
}

/* Ubicaciones */
.locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.location {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.location:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 111, 0.5);
  box-shadow: 0 22px 45px -22px rgba(0, 0, 0, 0.7);
}

.location__num {
  position: absolute;
  top: 0.55rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.07);
}

.location__icon {
  display: grid;
  place-items: center;
  height: 2.85rem;
  width: 2.85rem;
  border-radius: 0.8rem;
  color: var(--light-blue);
  background: rgba(70, 213, 231, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.location__name {
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.locations__note {
  margin-top: 1.75rem;
  text-align: center;
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--pale-sky);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--salmon);
  margin-bottom: 0.9rem;
}

/* Banda de cita (mantiene la estética del side panel) */
.quote-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
}

.quote-band__eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--pale-sky);
  margin-bottom: 1.25rem;
}

.quote-band__text {
  font-family: var(--font-script);
  font-size: 3.5rem;
  line-height: 1.1;
}

/* Contacto / CTA */
.contact__action {
  text-align: center;
  margin-bottom: 2.25rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact__card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.85rem;
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact__card:hover {
  border-color: rgba(240, 138, 59, 0.5);
  transform: translateY(-2px);
}

.contact__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.6rem;
}

.contact__value {
  font-size: 1.15rem;
  font-weight: 600;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  display: grid;
  gap: 0.85rem;
  max-width: 50rem;
  margin: 0 auto;
}

.faq__item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--gradient-wrap);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.faq__item[open] {
  border-color: rgba(255, 140, 111, 0.45);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.7);
}

.faq__item[open]::before {
  transform: scaleY(1);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  transition: color 0.2s ease;
}

.faq__q::marker {
  content: "";
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__item[open] .faq__q {
  color: var(--salmon);
}

.faq__q-text {
  flex: 1;
}

.faq__icon {
  position: relative;
  flex-shrink: 0;
  height: 1.85rem;
  width: 1.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.3s ease, border-color 0.25s ease, background 0.25s ease;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--salmon);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.faq__icon::before {
  width: 0.8rem;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 0.8rem;
}

.faq__item[open] .faq__icon {
  transform: rotate(135deg);
  border-color: var(--salmon);
  background: rgba(255, 140, 111, 0.16);
}

.faq__a {
  padding: 0 1.5rem 1.4rem;
  color: var(--pale-sky);
  line-height: 1.7;
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__contact a {
  transition: color 0.2s ease;
}

.site-footer__contact a:hover {
  color: var(--light-blue);
}

.site-footer__credit {
  width: 100%;
  text-align: center;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.site-footer__credit a {
  color: var(--salmon);
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.site-footer__credit a:hover {
  opacity: 0.8;
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (min-width: 640px) {
  .hero__title { font-size: 4.5rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .locations { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: repeat(3, 1fr); }
}

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

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .locations { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 639px) {
  .statement__big { font-size: 2.75rem; }
  .quote-band__text { font-size: 2.5rem; }
  .section__title { font-size: 2.25rem; }
}
