:root {
  --color-navy: #071f3f;
  --color-navy-dark: #03152d;
  --color-blue: #0057b8;
  --color-blue-light: #0a7de0;
  --color-gold: #c99422;
  --color-gold-light: #f2c75c;
  --color-white: #ffffff;
  --color-light: #f6f8fb;
  --color-gray: #5f6b7a;
  --color-border-gold: rgba(201, 148, 34, 0.55);

  --gradient-navy: linear-gradient(135deg, #03152d 0%, #071f3f 55%, #0b2b55 100%);
  --gradient-gold: linear-gradient(135deg, #b77c12 0%, #f2c75c 50%, #b77c12 100%);
  --gradient-blue: linear-gradient(135deg, #004da3 0%, #0a7de0 100%);

  --font-main: 'Montserrat', 'Poppins', Arial, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --shadow-soft: 0 12px 30px rgba(3, 21, 45, 0.12);
  --shadow-card: 0 8px 22px rgba(3, 21, 45, 0.10);
  --shadow-gold: 0 10px 25px rgba(201, 148, 34, 0.25);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1180px;
  --section-padding: 90px 24px;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1DA851;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-main);
  background: var(--color-light);
  color: var(--color-navy);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  background: var(--color-white);
  border-bottom: 4px solid var(--color-gold);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 12px 40px rgba(3, 21, 45, 0.18);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-circle {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  padding: 4px;
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: var(--color-white);
}

.brand-title {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-navy);
  letter-spacing: -0.5px;
}

.brand-title span {
  display: block;
  color: var(--color-gold);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--color-gold);
}

.btn--whatsapp-header {
  background: var(--color-whatsapp);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn--whatsapp-header:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .nav-menu { display: flex; }
}

/* ----- NAV TOGGLE (Mobile) ----- */
.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 900px) { .navbar__toggle { display: none; } }

/* ----- MOBILE MENU ----- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-navy);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-menu.open { right: 0; }

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-menu__link {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--color-white);
  transition: color 0.3s;
}
.mobile-menu__link:hover { color: var(--color-gold); }
.mobile-menu__whatsapp {
  margin-top: 16px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-navy);
  color: var(--color-white);
  padding: 100px 24px 130px;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -80px;
  height: 170px;
  background: var(--color-light);
  border-top: 6px solid var(--color-gold);
  border-radius: 50% 50% 0 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-kicker {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-navy);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-title strong {
  display: block;
  color: var(--color-gold-light);
}

.hero-description {
  max-width: 620px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image {
  position: relative;
}

.hero-image .hero-img-placeholder {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 6px solid rgba(255, 255, 255, 0.9);
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}

.hero-image .hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(242,199,92,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hero-badge {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--gradient-navy);
  border: 6px solid var(--color-gold);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.hero-badge span {
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-badge strong {
  display: block;
  color: var(--color-gold-light);
  font-size: 2rem;
}

.hero--sm {
  min-height: auto;
  padding: 80px 24px 110px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  font-family: var(--font-main);
  font-size: 0.85rem;
  gap: 10px;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn--large {
  min-height: 60px;
  padding: 0 36px;
  font-size: 0.95rem;
}

.btn--full { width: 100%; justify-content: center; }

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  font-size: 0.8rem;
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.section-white {
  background: var(--color-white);
}

.section-light {
  background: var(--color-light);
}

.section-navy {
  background: var(--gradient-navy);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 52px;
}

.section-title .eyebrow {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--color-white);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.section-title h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-navy);
}

.section-navy .section-title h2 {
  color: var(--color-white);
}

.section-title h2 span {
  color: var(--color-gold);
}

.section-title p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--color-gray);
  line-height: 1.7;
}

.section-navy .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CARDS GRID (Oferta Educativa)
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  cursor: default;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--color-gold);
}

.card-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: var(--color-white);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 4px solid var(--color-gold);
}

.card-icon svg {
  width: 44px;
  height: 44px;
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  color: var(--color-gray);
  line-height: 1.55;
  font-size: 0.9rem;
}

.card-check {
  width: 32px;
  height: 32px;
  margin: 16px auto 0;
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 900;
}

/* ============================================
   RIBBON TITLE
   ============================================ */
.ribbon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.ribbon-title::before,
.ribbon-title::after {
  content: "";
  height: 2px;
  width: 140px;
  background: var(--color-gold);
}

.ribbon-title span {
  background: var(--gradient-gold);
  color: var(--color-white);
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

/* ============================================
   SPLIT SECTION (Acerca / panels)
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.image-frame {
  position: relative;
  padding: 12px;
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
}

.image-frame .image-placeholder {
  border-radius: calc(var(--radius-lg) - 8px);
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}

.image-frame .image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(242,199,92,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.content-panel {
  background: var(--gradient-navy);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 46px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.content-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(242, 199, 92, 0.35);
  border-radius: 50%;
  right: -70px;
  top: -70px;
}

.content-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.content-panel h2 span {
  color: var(--color-gold-light);
}

.content-panel p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.content-panel .benefit-list {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* ============================================
   BENEFIT LIST (Pilares, features)
   ============================================ */
.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border-gold);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

.benefit-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--gradient-navy);
  color: var(--color-white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-item-content {
  flex: 1;
}

.benefit-item-content strong {
  color: var(--color-navy);
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.benefit-item-content p {
  color: var(--color-gray);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 4px;
}

.benefit-check {
  margin-left: auto;
  color: var(--color-gold);
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ============================================
   ABOUT TEXT (for standalone about sections)
   ============================================ */
.about__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 20px;
}
.about__text:last-child { margin-bottom: 0; }

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

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

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__item-inner {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.gallery__item--tall .gallery__item-inner { aspect-ratio: 1/2; }
.gallery__item--wide .gallery__item-inner { aspect-ratio: 2/1; }

.gallery__item:hover .gallery__item-inner { transform: scale(1.04); }

.gallery__item-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-navy);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-gold);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1fr; } }

.contact__text {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 32px;
  max-width: 450px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}

.contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__detail-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--color-navy);
}
.contact__detail-item p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.5;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}
.contact__detail-icon svg { width: 20px; height: 20px; }

.contact__form {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--color-border-gold);
}

.contact__form-title {
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--color-navy);
  text-transform: uppercase;
}

.form__group { margin-bottom: 16px; }

.form__input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e4ea;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--color-navy);
  background: var(--color-light);
  transition: border-color 0.25s ease;
  outline: none;
}
.form__input:focus {
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 148, 34, 0.1);
}
.form__input::placeholder { color: var(--color-gray); }
textarea.form__input { resize: vertical; min-height: 120px; }

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
  background: var(--gradient-navy);
  color: var(--color-white);
  padding: 70px 24px 34px;
  border-top: 6px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: -90px;
  height: 160px;
  background: var(--color-light);
  border-bottom: 5px solid var(--color-gold);
  border-radius: 0 0 50% 50%;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.footer-script {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer-brand {
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.footer-brand span {
  color: var(--color-gold);
}

.footer-desc {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-inner,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 110px;
  }

  .hero-image {
    max-width: 620px;
    margin: 0 auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 70px 18px;
  }

  .header-inner {
    padding: 12px 18px;
  }

  .logo-circle {
    width: 60px;
    height: 60px;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .hero {
    padding: 70px 18px 100px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-badge {
    width: 100px;
    height: 100px;
    right: 10px;
    top: 10px;
    bottom: auto;
  }

  .hero-badge span {
    font-size: 0.85rem;
  }

  .hero-badge strong {
    font-size: 1.3rem;
  }

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

  .content-panel {
    padding: 32px 24px;
  }

  .ribbon-title::before,
  .ribbon-title::after {
    width: 50px;
  }

  .ribbon-title span {
    padding: 9px 18px;
    font-size: 0.85rem;
  }

  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--tall .gallery__item-inner { aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .hero-inner .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ============================================
   GSAP / SCROLL ANCHOR
   ============================================ */
.js-animate { opacity: 0; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5) !important;
  text-decoration: none !important;
  border: 2px solid #fff !important;
  transition: all 0.3s ease !important;
}
.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float:active {
  transform: scale(0.95);
}

/* Pulse animation */
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float {
  animation: whatsapp-pulse 2s infinite;
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
