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

/* =========================================
   FUENTES
========================================= */
@font-face {
  font-family: "Cowkids";
  src: url("Cowkids.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bahnschrift";
  src: url("Bahnschrift.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================
   VARIABLES
========================= */
:root {
  --color-primary: #0097ff;
  --color-secondary: #b771ff;
  --color-pink: #ff6bd2;
  --color-soft: #ff9c9d;
  --color-accent: #ffc685;
  --color-yellow: #ffd76a;

  --color-text: #2c2c2c;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-soft: #f8fbff;
  --color-border: #ececec;

  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.15);

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

  --transition: 0.3s ease;
  --container-width: 1180px;
}

/* =========================
   BASE
========================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Bahnschrift", "Fredoka", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

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

section {
  padding: 6rem 0;
}

.container {
  width: min(var(--container-width), calc(100% - 2rem));
  margin-inline: auto;
}

/* Títulos principales con Cowkids */
h1,
h2,
h3,
.nav-brand {
  font-family: "Cowkids", "Bahnschrift", "Fredoka", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h2 {
  text-align: center;
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* =========================
   BOTONES
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.8rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* =========================
   NAVBAR
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 156, 242, 0.04);
}

/* Más ancho para que no se concentre al centro */
.nav.container {
  width: 100%;
  max-width: none;
  padding-left: clamp(1.5rem, 4vw, 4.5rem);
  padding-right: clamp(1.5rem, 4vw, 4.5rem);
  margin: 0;
}

.nav {
  height: 85px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 2rem;
}

/* Logo más a la izquierda */
.nav-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 1rem;
  font-size: 2rem;
  color: var(--color-text);
}

.nav-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* Menú ocupa el espacio restante */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 1.8vw, 2rem);
  list-style: none;
  width: 100%;
}

.nav-menu a {
  font-family: "Bahnschrift", "Fredoka", Arial, sans-serif;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

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

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Redes sociales más hacia la derecha */
.nav-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-left: clamp(0.5rem, 2vw, 2rem);
}

.nav-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-socials a svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.nav-socials a:hover {
  transform: translateY(-3px);
  background: var(--color-pink);
  color: var(--color-white);
}

.nav-socials a[href*="facebook"] {
  color: #1877f2;
}

.nav-socials a[href*="facebook"]:hover {
  background: #1877f2;
  color: var(--color-white);
}

.nav-socials a[href*="instagram"] {
  color: var(--color-pink);
}

.nav-socials a[href*="instagram"]:hover {
  background: var(--color-pink);
  color: var(--color-white);
}

.nav-socials a[href*="wa.me"] {
  color: #25d366;
}

.nav-socials a[href*="wa.me"]:hover {
  background: #25d366;
  color: var(--color-white);
}

.nav-socials a[href*="tiktok"] {
  color: #111111;
}

.nav-socials a[href*="tiktok"]:hover {
  background: #111111;
  color: var(--color-white);
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(183, 113, 255, 0.22), transparent 70%);
  top: -200px;
  right: -100px;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 151, 255, 0.18), transparent 70%);
  bottom: -150px;
  left: -100px;
  z-index: 0;
}

.hero-overlay {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(25px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-logo.hero-logo-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-content {
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-content.show {
  opacity: 1;
  transform: translateY(0);
}


.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-pink));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 1.1rem;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================
   CARDS GENERALES
========================= */
.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  padding: 2rem;
  transition: 0.4s ease;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 151, 255, 0.08), rgba(255, 107, 210, 0.08));
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
}

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

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.card h3,
.card p,
.card strong {
  position: relative;
  z-index: 1;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
}

.card p {
  color: var(--color-text-light);
}

/* =========================
   SERVICIOS
========================= */
.services {
  background: var(--color-bg);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  justify-items: center;
  gap: 1.5rem;
}

.service-card {
  width: 100%;
  min-height: 220px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card h3,
.service-card p {
  text-align: center;
}

.service-card p {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

/* Colores tenues por tab de servicios */
.service-blue {
  background: linear-gradient(135deg, rgba(0, 151, 255, 0.13), rgba(255, 255, 255, 0.9));
  border-color: rgba(0, 151, 255, 0.2);
}

.service-blue h3 {
  color: var(--color-primary);
}

.service-yellow {
  background: linear-gradient(135deg, rgba(255, 215, 106, 0.26), rgba(255, 255, 255, 0.9));
  border-color: rgba(255, 215, 106, 0.35);
}

.service-yellow h3 {
  color: #e0a800;
}

.service-pink {
  background: linear-gradient(135deg, rgba(255, 107, 210, 0.13), rgba(255, 255, 255, 0.9));
  border-color: rgba(255, 107, 210, 0.22);
}

.service-pink h3 {
  color: var(--color-pink);
}

.service-purple {
  background: linear-gradient(135deg, rgba(183, 113, 255, 0.13), rgba(255, 255, 255, 0.9));
  border-color: rgba(183, 113, 255, 0.22);
}

.service-purple h3 {
  color: var(--color-secondary);
}

.service-orange {
  background: linear-gradient(135deg, rgba(255, 198, 133, 0.22), rgba(255, 255, 255, 0.9));
  border-color: rgba(255, 198, 133, 0.35);
}

.service-orange h3 {
  color: #f0a24d;
}

/* =========================
   MODAL SERVICIOS
========================= */
.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9999;
  padding: 4rem;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.service-modal-content {
  width: min(1100px, 95%);
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.service-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.service-modal-scroll {
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.service-info {
  padding: 0;
  text-align: center;
}

.service-info h3,
#service-title {
  font-family: "Cowkids", "Bahnschrift", "Fredoka", Arial, sans-serif;
  font-size: clamp(3rem, 2.4vw, 1.95rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  margin-bottom: 3rem;
  text-align: center;
}

#service-title.service-blue {
  color: var(--color-primary);
}

#service-title.service-yellow {
  color: #e0a800;
}

#service-title.service-pink {
  color: var(--color-pink);
}

#service-title.service-purple {
  color: var(--color-secondary);
}

#service-title.service-orange {
  color: #f0a24d;
}

.service-info p {
  line-height: 1.8;
  color: #555555;
  white-space: pre-line;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-video {
  margin-top: 2rem;
}

.service-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 18px;
}

.service-gallery {
  margin-top: 2rem;
  text-align: center;
}

.service-gallery h4 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
  justify-content: center;
  justify-items: center;
  gap: 1rem;
}

.service-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.service-gallery-grid img:hover {
  transform: scale(1.03);
}

.service-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

/* =========================
   GALERÍA
========================= */
.gallery {
  text-align: center;
}

.carousel {
  position: relative;
  max-width: 950px;
  height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f5f5f5;
  box-shadow: var(--shadow-sm);
}

.carousel-track {
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  background: #f8f8f8;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 10;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--color-white);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* =========================
   TESTIMONIALES
========================= */
.testimonials {
  text-align: center;
}

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

.testimonial-card {
  cursor: pointer;
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--color-primary);
}

/* =========================
   MODAL TESTIMONIOS
========================= */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: min(900px, 100%);
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.video-modal iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

.video-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

/* =========================
   NOSOTROS
========================= */
.about {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.about-media img {
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

/* =========================
   CONTACTO
========================= */
.contact {
  text-align: center;
}

.contact p {
  color: var(--color-text-light);
}

.contact-form {
  max-width: 700px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 1rem;
  resize: none;
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-primary);
  border-color: var(--color-primary);
}

.contact-form button {
  margin-top: 0.5rem;
  width: 100%;
}

/* =========================
   CTA
========================= */
.cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-pink));
  color: var(--color-white);
  text-align: center;
}

.cta p {
  max-width: 700px;
  margin: 1rem auto 2rem;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #1f1f1f;
  color: var(--color-white);
  text-align: center;
  padding: 2rem 1rem;
}

/* Redes sociales en footer */
.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-socials a {
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-pink);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: var(--color-pink);
  color: var(--color-white);
}

.footer-socials a[href*="facebook"] {
  color: #1877f2;
}

.footer-socials a[href*="facebook"]:hover {
  background: #1877f2;
  color: var(--color-white);
}

.footer-socials a[href*="instagram"] {
  color: var(--color-pink);
}

.footer-socials a[href*="instagram"]:hover {
  background: var(--color-pink);
  color: var(--color-white);
}

.footer-socials a[href*="wa.me"] {
  color: #25d366;
}

.footer-socials a[href*="wa.me"]:hover {
  background: #25d366;
  color: var(--color-white);
}

.footer-socials a[href*="tiktok"] {
  color: #111111;
}

.footer-socials a[href*="tiktok"]:hover {
  background: #111111;
  color: var(--color-white);
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  color: var(--color-white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* =========================
   ANIMACIONES JS
========================= */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 1rem;
  }

  .nav-brand {
    font-size: 1.45rem;
  }

  .nav-socials a {
    width: 34px;
    height: 34px;
  }

  .nav-btn {
    padding-inline: 1.3rem;
  }
}

@media (max-width: 992px) {
  .testimonials .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-text h2 {
    text-align: center;
  }

  .hero-logo {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav.container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem;
    display: none;
    text-align: center;
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    display: flex;
    justify-content: center;
  }

  .nav-socials {
    justify-content: center;
    margin: 0.5rem 0;
  }

  .nav-socials a {
    width: 40px;
    height: 40px;
  }

  .nav-socials a svg {
    width: 19px;
    height: 19px;
  }

  .nav-btn {
    width: 100%;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-buttons {
    flex-direction: column;
    width: min(420px, 100%);
    margin-inline: auto;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .service-card {
    max-width: 380px;
    min-height: 210px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-gallery-grid {
    grid-template-columns: minmax(220px, 1fr);
  }

  .carousel {
    height: 360px;
  }

  .service-modal,
  .video-modal {
    padding: 1rem;
  }

  .service-modal-scroll {
    padding: 1.5rem;
  }

  .service-gallery-grid img {
    height: 240px;
  }

  .footer-socials {
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-socials a {
    width: 100%;
    max-width: 260px;
  }
}
@media (max-width: 480px) {
  .nav {
    height: 76px;
  }

  .nav-menu {
    top: 76px;
  }

  .nav-logo {
    width: 46px;
    height: 46px;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .hero {
    padding-top: 95px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .hero h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .card {
    padding: 1.5rem;
  }

  .card h3,
  #service-title {
    font-size: clamp(1.35rem, 8vw, 1.75rem);
  }

  .carousel {
    height: 280px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .hero-logo {
    max-width: 92%;
  }

  .hero-content {
    margin-top: 2rem;
  }

  .hero p {
    font-size: 1rem;
    padding-inline: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    max-width: 96%;
  }

  .hero-content {
    margin-top: 1.5rem;
  }
}