
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #3C3C43;
    background-color: #f5f5f7;
    margin-top:90px; 
  }
  
  h2 {
    color: grey;
  }

  html {
    scroll-padding-top: 90px;
  }
  
  footer p a,
footer p a:hover,
footer p a:visited {
  text-decoration: none;
  color: inherit;
}

img {
  pointer-events: none;
}
 
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 10%;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: 9999;

  background-color: #469989;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.navbar {
  background: rgba(70, 153, 137, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero {
  margin-top: -10px !important;
}
  
  .navbar .logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
  
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .nav-links a:hover {
    color: #d2d2d7;
  }

  .navbar.scrolled {
    background: rgba(70, 153, 137, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    color: #3B8E7D;
  }
  
  .logo-icon {
    width: 44px;
    height: 44px;
  }

  .logo span {
    line-height: 1;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;     
    letter-spacing: -0.2px; 
  }

  @media (max-width: 768px) {
    .logo {
      font-size: 1.2rem;
      gap: 5px;
      margin-left: 0;
    }
  
    .logo-icon {
      width: 36px;
      height: 36px;
    }

      .hero { margin-top: -18px !important;
      
    }
  }

  .hero {
    min-height: 100vh;
    background: linear-gradient(
        rgba(109, 108, 108, 0.7),
        rgba(91, 90, 90, 0.7)
      ),
      url("../img/ejemplotratamijpg.jpg") center/cover no-repeat;
  
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  
    padding: 40px 20px;
    color: #3C3C43;
  
    animation: fadeIn 1s ease-in-out;
  
    margin-top: 0;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color:#fff;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color:#fff;
  }
  
  .btn {
    background-color: #3B8E7D;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .btn:hover {
    background-color: #2F3A38;
    transform: translateY(-2px);
  }
  
  .servicios {
    padding: 80px 10%;
    text-align: center;
    background-color: #f5f5f7;
  }
  
  .servicios h2 {
    margin-bottom: 50px;
    font-size: 2.4rem;
    font-weight: 700;
    color: grey;
  }
  
  .servicios-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex: 1 1 280px;
    opacity: 0;
    transform: translateY(20px); 
  }
  
  .card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: grey;
  }
  
  .card p {
    font-weight: 400;
    color: grey;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  
.turnos {
  padding: 80px 10%;
  background: #ffffff;
  max-width: 900px;
  margin: 60px auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.turnos h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-grid input,
.form-grid select {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: 0.3s;
  width: 100%;
  background: #f9f9f9;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: #3B8E7D;
  outline: none;
  background: #fff;
}

.form-grid select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}

.buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #3B8E7D;
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary:hover {
  background: #327a6b;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-grid select:invalid {
  color: #999;
}

.form-grid select option[value=""] {
  color: #999;
}

  .contacto {
    padding: 60px 10%;
    text-align: center;
    color: #2F3A38;
    animation: fadeIn 1s ease-in-out;
  }
  
  .contacto h2 {
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 700;
    color:grey;
  }
  
  .contacto p {
    margin-bottom: 8px;
    font-weight: 400;
    color: grey;
  }
  
  footer {
    background-color: #469989;
    color: #fff;
    text-align: center;
    padding: 25px 10%;
    font-size: 0.95rem;
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @keyframes fadeInUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
  }
  
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 15px;
    }

    .nav-links a {
      color: #3B8E7D;
      text-decoration: none;
      font-weight: 600;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.1rem;
      text-align: center;
      padding: 10px 20px;
      border-radius: 12px;
      transition: 
        color 0.3s ease,
        background 0.3s ease;
    }

  .nav-links a:hover {
    color: #2F3A38;
    background: rgba(59, 142, 125, 0.12);
  }
  
  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .servicios-container {
    flex-direction: column;
  }

  .turnos {
    padding: 40px 5%;
  }
}

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #2F3A38;
    border-radius: 3px;
    transition: 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #3B8E7D;
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0;
    display: none; 
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 1.6rem;
    font-weight: 500;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
    color:#3B8E7D;
  }
}

.kinesiologo {
    padding: 80px 10%;
    background-color: #fff;
  }
  
  .kinesiologo-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .kinesiologo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  }
  
  .kinesiologo-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  
  .kinesiologo-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #3B8E7D;
  }
  
  .kinesiologo-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3c3c43;
  }
  
  .kinesiologo-text p {
    font-size: 1.1rem;
    color: #3c3c43;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .kinesiologo-container {
      flex-direction: column; 
      text-align: center;
      gap: 25px;
      padding: 30px;
    }
  
    .kinesiologo-text h2 {
      font-size: 1.7rem;
    }
  
    .kinesiologo-text h4 {
      font-size: 1.1rem;
    }
  
    .kinesiologo-text p {
      font-size: 1rem;
    }
  
    .kinesiologo-image img {
      width: 100%;
      max-width: 300px; 
    }
  }
  
.ubicacion-section {
  padding: 60px 20px;
  background: #f5f5f7;
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

.ubicacion-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: grey;
}

.ubicacion-section p {
  font-size: 1rem;
  color: #3c3c4399;
  margin-bottom: 30px;
}

.ubicacion-container {
  max-width: 900px;
  margin: 0 auto;
}

.map-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .ubicacion-section {
    padding: 40px 15px;
  }

  .ubicacion-section h2 {
    font-size: 1.5rem;
  }

  .ubicacion-section p {
    font-size: 0.95rem;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

.contacto {
  padding: 60px 20px;
  background: #f5f5f7;
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

.contacto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: grey;
}

.contacto-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-btn {
  display: inline-block;
  padding: 15px 25px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  font-weight: 600;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.email-btn {
  background: #2F3A38;
  color: #fff;
}

.email-btn:hover {
  background: #0051a8;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #3B8E7D;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contacto h2 {
    font-size: 1.5rem;
  }

  .contact-btn {
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
    padding: 12px 20px;
  }
}

.faq-section {
  padding: 60px 20px;
  background: #fff;
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: grey;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: #f5f5f7;
  border: none;
  outline: none;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  background: #327a6b;
  color: #ffffff;
}

/* Estado normal ANTES de abrir */
.faq-item:not(.active) .faq-question {
  background-color: #f5f5f7 !important;
  color: #1d1d1f !important;
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1rem;
  color: #3c3c4399;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

.obras-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.obras-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.obras-section p {
  font-size: 1rem;
  color: #3c3c4399;
  margin-bottom: 40px;
}

.obras-carousel {
  display: flex;
  overflow: hidden;
  gap: 30px;
  justify-content: center;
  padding: 10px 0;
  background-color: #fff;
  
}

.obra-card {
  flex: 0 0 auto;
  width: 140px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0px 20px  rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}

.obra-card img {
  width: 100%;
  height: auto;
  display: block;
}

.obra-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 30px  0c(0,0,0,0.12);
}

@media (max-width: 768px) {
  .obra-card {
    width: 110px;
    padding: 15px;
  }
  .obras-carousel {
    gap: 20px;
    background-color: #fff;
  }
}

@media (max-width: 480px) {
  .obra-card {
    width: 90px;
    padding: 10px;
  }
}

.testimonios-section {
  padding: 60px 20px;
  background: #f5f5f7;
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

.testimonios-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: grey;
}

.testimonios-section h3 {
  color: grey;
}

.testimonios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1rem;
  color: #3c3c4399;
  margin-bottom: 15px;
}

.testimonial-stars {
  color: #ffcc00;
  font-size: 1.1rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .testimonios-section h2 {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

.servicios-section {
  padding: 60px 20px;
  background: #f5f5f7;
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

.servicios-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: grey;
}

.servicios-section p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #3c3c4399;
}

.servicios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.servicio-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.servicio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #3B8E7D;
}

.servicio-card p {
  font-size: 0.95rem;
  color: #3c3c4399;
  flex-grow: 1;
}

.btn-consultar {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 10px;
  background: #3B8E7D;
  color: #fff;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.3s, transform 0.3s;
}

.btn-consultar:hover {
  background: #2F3A38;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .servicios-section h2 {
    font-size: 1.5rem;
  }

  .servicio-card h3 {
    font-size: 1.1rem;
  }

  .servicio-card p {
    font-size: 0.9rem;
  }
}

.servicios-seccion {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f5f5f7;
  font-family: 'San Francisco', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.servicios-seccion .servicio-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.servicios-seccion .servicio-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.servicios-seccion .servicio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.servicios-seccion .servicio-card h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1c1c1e;
}

.servicios-seccion .servicio-card ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 1rem;
  color: #3c3c4399;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .servicios-seccion1 {
    padding: 30px 15px;
  }

  .servicios-seccion .servicio-card h2 {
    font-size: 1.5rem;
  }

  .servicios-seccion .servicio-card ul {
    font-size: 0.95rem;
  }
}

.galeria-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.galeria-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: grey;
  margin-bottom: 10px;
}

.galeria-section p {
  font-size: 1rem;
  color: grey;
  margin-bottom: 40px;
}

.galeria-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.obras-section h2 {
  color:grey;
}

.galeria-card {
  flex: 0 0 auto;
  width: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.galeria-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}

.galeria-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

.galeria-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .galeria-card {
    width: 180px;
  }
  .galeria-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .galeria-card {
    width: 140px;
  }
}

.btn-google {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #2F3A38;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-google:hover {
  background: #005bb5;
}

.servicios-apple {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  background: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.servicio-apple {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.servicio-apple::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
}

.servicio-apple h2,
.servicio-apple ul {
  position: relative;
  z-index: 2;
}

.servicio-apple h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #fff;
}

.servicio-apple ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicio-apple li {
  font-size: 0.95rem;
  color: #fff;
  padding: 6px 0;
}

.servicio-apple:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.servicio-apple.rehab {
  background-image: url("../img/ejemplotratamijpg.jpg");
}

.servicio-apple.deportiva {
  background-image: url("../img/ejemplotratamijpg.jpg");
}

.servicio-apple.masajes {
  background-image: url("../img/ejemplotratamijpg.jpg");
}

.servicio-apple.pediatrica {
  background-image: url("../img/ejemplotratamijpg.jpg");
}

.servicio-apple.acupuntura {
  background-image: url("../img/ejemplotratamijpg.jpg");
}

@media (max-width: 768px) {
  .servicios-apple {
    gap: 20px;
  }

  .servicio-apple {
    padding: 24px;
  }
}

.kine-intro {
  padding: 100px 20px;
  background: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.kine-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.kine-intro-text h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.kine-intro-sub {
  font-size: 1.2rem;
  color: #3c3c4399;
  margin-bottom: 25px;
}

.kine-intro-text p {
  font-size: 1rem;
  color: #3c3c43;
  line-height: 1.7;
  margin-bottom: 25px;
}

.kine-intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kine-intro-list li {
  font-size: 0.95rem;
  color: #1d1d1f;
  padding: 8px 0;
  position: relative;
  padding-left: 26px;
}

.kine-intro-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0071e3;
  font-weight: 600;
}

.kine-intro-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


@media (max-width: 900px) {
  .kine-intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .kine-intro-list li {
    padding-left: 0;
  }

  .kine-intro-list li::before {
    display: none;
  }
}

.footer-apple {
  background: #3B8E7D;
  padding: 60px 20px 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #2F3A38;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.footer-brand h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color:#fff;
  font-family: 'Libre Baskerville', serif;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #f5f5f7;
}

.footer-info h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #2F3A38;
}

.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info li {
  font-size: 0.95rem;
  color: #fff;
  padding: 6px 0;
}

.footer-info a {
  color: #f5f5f7;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #d2d2d7;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #fff;
}


@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 15px;
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
}

.wa-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.wa-text {
  font-size: 16px;
  font-weight: 500;
}


@media (max-width: 768px) {
  .wa-text {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .wa-icon {
    width: 28px;
    height: 28px;
  }
}

.tratamientos-hero {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 120px;
  background-color: #fff;
}


.tratamientos-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  color:gray
}

.tratamientos-hero p {
  max-width: 700px;
  margin: auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}


.tratamientos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px; 
  padding: 120px 10%;
}


.tratamiento-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.tratamiento-img {
  display: flex;
  justify-content: center;
}

.tratamiento-img img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}


.tratamiento-texto h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #327a6b;
}

.tratamiento-texto p {
  color: #777;
  margin-bottom: 16px;
}

.tratamiento-texto ul {
  list-style: none;
}

.tratamiento-texto li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.tratamiento-texto li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.3rem;
}


@media (max-width: 1024px) {
  .tratamientos-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 100px 6%;
  }
}



.metodologia {
  background-color: #ffffff;
  padding: 140px 0; 
}


.metodologia .metodologia-inner {
  max-width: 1200px;
  margin: auto;
  padding: 110px 8%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.metodologia h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: gray;
}

.metodologia p {
  max-width: 700px;
  margin: auto;
  color: gray;
}

.metodologia-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.metodologia-grid div {
  background: #f9fafb;
  padding: 30px;
  border-radius: 18px;
}

.metodologia-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color:#327a6b;
}


@media (max-width: 768px) {
  .metodologia {
    padding: 100px 0;
  }

  .metodologia .metodologia-inner {
    padding: 80px 6%;
  }

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



.educacion-corporal {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 120px;
}

.educacion-corporal h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.educacion-corporal p {
  max-width: 700px;
  margin: auto;
  color: var(--text-muted);
}

.educacion-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 60px;
}

.educacion-item {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.educacion-item img {
  width: 100%;
  max-width: 620px;
  max-height: 440px;
  object-fit: contain;
  margin: auto;
  border-radius: 10px;
}

.educacion-item h3 {
  margin: 20px 0 10px;
}


@media (max-width: 1024px) {
  section {
    padding: 80px 6%;
  }
}

@media (max-width: 768px) {
  .tratamiento-detalle {
    grid-template-columns: 1fr;
  }

  .tratamiento-detalle.reverse {
    direction: ltr;
  }

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

  .tratamiento-img img,
  .educacion-item img {
    max-width: 100%;
    border-radius: 10px;
    max-height: none;
  }

  section {
    padding: 70px 5%;
  }
}


.container {
  padding: 16px;
}


.profesional {
  display: flex;
  gap: 12px;
  background: #eef1fa;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.avatar {
  background: #dce1f7;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.calendar {
  background: white;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 10px;
}

.days,
.dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 8px;
}

.days span {
  font-size: 12px;
  color: #666;
}

.dates span {
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}

.dates .active {
  background: #327a6b;
  color: white;
}

.dates .disabled {
  color: #bbb;
}


.tipo {
  text-align: center;
  color: #327a6b;
  margin-bottom: 12px;
}


.horarios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.horarios button {
  border: none;
  background: #eef1fa;
  padding: 14px 0;
  border-radius: 14px;
  font-size: 15px;
  cursor: pointer;
}

.horarios small {
  display: block;
  font-size: 12px;
  color: #555;
}

.horarios button.selected {
  background: #327a6b;
  color: white;
}

.horarios button.selected small {
  color: #dce1ff;
}

.btn-primary {
  width: 100%;
  background: #3B8E7D;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 50px;
}

.dates span.full {
  background: #e0e0e0;
  color: #999;
  pointer-events: none;
  border-radius: 50%;
  position: relative;
}

.dates span.full::after {
  content: "●";
  font-size: 10px;
  color: #c0392b;
  position: absolute;
  bottom: 2px;
  right: 2px;
}


.turnos-link-container {
  display: flex;
  justify-content: center; 
  margin: 40px 0;
}

.btn-primary {
  padding: 14px 28px;
  font-size: 18px;
  background-color: #3B8E7D; 
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  max-width: 300px; 
  width: 90%;      
}

.btn-primary:hover {
  background-color: #36A18C;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}


@media (max-width: 480px) {
  .btn-primary {
    font-size: 16px;
    padding: 12px 24px;
  }
}

.form-reserva {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}

.input-reserva {
  width: 90%;
  max-width: 300px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.input-reserva:focus {
  border-color: #3B8E7D;
  box-shadow: 0 0 8px rgba(59, 142, 125, 0.3);
}


.btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}


.btn-primary {
  padding: 14px 28px;
  font-size: 18px;
  background-color: #3B8E7D;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  cursor: pointer;

  width: 100%;
  max-width: 320px;

  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;

  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}


.btn-primary:hover {
  background-color: #36A18C;
  transform: translateY(-2px);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


.btn-primary:active {
  transform: scale(0.98);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.18);
}


@media (max-width: 480px) {
  .btn-primary {
    font-size: 16px;
    padding: 14px 20px;
    border-radius: 12px;
  }
}


@media (max-width: 480px) {
  .input-reserva {
    font-size: 14px;
    padding: 10px 12px;
  }
}

.turnos-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 30px;
}


.turnos-header h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  margin: 0;
}


.turnos-header p {
  font-size: clamp(15px, 2.5vw, 18px);
  color: #666;
  max-width: 520px;
  margin: 0;
}

.legal-page {
  width: 100%;
  padding: 100px 24px 120px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(59, 142, 125, .08),
      transparent 35%
    ),
    #f5f5f7;
}


.legal-hero {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;

  margin-bottom: 20px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .75);

  border: 1px solid rgba(255, 255, 255, .9);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, .04),
    inset 0 1px 0 rgba(255, 255, 255, .8);

  color: var(--verde);

  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.legal-hero h1 {
  margin: 0 0 20px;

  color: var(--verde-dark);

  font-size: 30px;

  font-weight: 400;

  line-height: .98;

  letter-spacing: -3px;
}

.legal-hero p {
  max-width: 600px;

  margin: 0 auto;

  color: #747474;

  font-size: clamp(1rem, 2vw, 1.15rem);

  line-height: 1.7;
}

.legal-updated {
  display: inline-block;

  margin-top: 24px;

  color: #999;

  font-size: .78rem;

  letter-spacing: .3px;
}


.legal-layout {
  width: 100%;
  max-width: 1180px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 230px minmax(0, 1fr);

  gap: 28px;

  align-items: start;
}


.legal-sidebar {
  position: sticky;

  top: 100px;
}

.legal-sidebar-card {
  padding: 18px;

  border-radius: 22px;

  background: rgba(255, 255, 255, .72);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, .8);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .05),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}

.legal-sidebar-title {
  display: block;

  margin: 0 0 12px;

  padding: 0 10px;

  color: var(--verde);

  font-size: .68rem;

  font-weight: 800;

  letter-spacing: 1.2px;
}

.legal-sidebar a {
  display: block;

  padding: 10px;

  border-radius: 10px;

  color: #777;

  font-size: .85rem;

  text-decoration: none;

  transition: .25s ease;
}

.legal-sidebar a:hover {
  color: var(--verde-dark);

  background: var(--verde-light);

  transform: translateX(3px);
}

.legal-content {
  display: flex;

  flex-direction: column;

  gap: 18px;
}


.legal-card {
  position: relative;

  display: grid;

  grid-template-columns: 54px minmax(0, 1fr);

  gap: 22px;

  padding: 32px;

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.96),
      rgba(255,255,255,.72)
    );

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,.9);

  box-shadow:
    0 20px 60px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.9);

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease;
}

.legal-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 30px 80px rgba(0,0,0,.09),
    inset 0 1px 0 rgba(255,255,255,1);
}


.legal-icon {
  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      var(--verde-light),
      #ffffff
    );

  border: 1px solid rgba(59,142,125,.12);

  color: var(--verde);

  font-size: 1.35rem;

  box-shadow:
    0 10px 25px rgba(59,142,125,.10),
    inset 0 1px 0 #fff;
}


.legal-number {
  display: block;

  margin-bottom: 8px;

  color: var(--verde);

  font-size: .7rem;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.legal-card h2 {
  margin: 0 0 14px;

  color: var(--verde-dark);

  font-size: clamp(1.25rem, 2vw, 1.6rem);

  font-weight: 800;

  letter-spacing: -.5px;
}

.legal-card p {
  margin: 0 0 12px;

  color: #707070;

  font-size: .95rem;

  line-height: 1.75;
}

.legal-card p:last-child {
  margin-bottom: 0;
}


.legal-highlight {
  display: grid;

  gap: 4px;

  margin-top: 20px;

  padding: 16px 18px;

  border-radius: 16px;

  background: var(--verde-light);

  border: 1px solid rgba(59,142,125,.12);
}

.legal-highlight strong {
  color: var(--verde-dark);

  font-size: .82rem;
}

.legal-highlight span {
  color: #5f716d;

  font-size: .86rem;

  line-height: 1.6;
}

.legal-data-list {
  display: grid;

  gap: 10px;

  margin-top: 20px;
}

.legal-data-list div {
  padding: 15px 16px;

  border-radius: 16px;

  background: rgba(245,245,247,.8);

  border: 1px solid var(--border);
}

.legal-data-list strong {
  display: block;

  margin-bottom: 3px;

  color: var(--verde-dark);

  font-size: .85rem;
}

.legal-data-list span {
  color: #858585;

  font-size: .82rem;
}


.legal-security-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-top: 22px;
}

.security-item {
  min-height: 120px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 16px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      var(--verde-light)
    );

  border: 1px solid rgba(59,142,125,.10);

  color: var(--verde-dark);

  font-size: .8rem;

  font-weight: 700;

  line-height: 1.5;
}

.security-item span {
  color: var(--verde);

  font-size: .7rem;

  font-weight: 800;

  letter-spacing: 1px;
}

.legal-contact-card {
  padding: 48px 36px;

  text-align: center;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at top,
      rgba(255,255,255,.25),
      transparent 45%
    ),
    var(--verde-dark);

  box-shadow:
    0 25px 70px rgba(47,58,56,.22);
}

.legal-contact-label {
  display: block;

  margin-bottom: 16px;

  color: #a8d6cb;

  font-size: .7rem;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.legal-contact-card h3 {
  margin: 0 0 12px;

  color: #fff;

  font-size: clamp(1.7rem, 4vw, 2.4rem);

  font-weight: 800;

  letter-spacing: -1px;
}

.legal-contact-card p {
  max-width: 520px;

  margin: 0 auto 26px;

  color: rgba(255,255,255,.65);

  font-size: .95rem;

  line-height: 1.7;
}

.legal-contact-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 22px;

  border-radius: 999px;

  background: #fff;

  color: var(--verde-dark);

  text-decoration: none;

  font-size: .88rem;

  font-weight: 800;

  transition: .25s ease;
}

.legal-contact-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}


@media (max-width: 900px) {

  .legal-page {
    padding: 80px 20px 100px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar-card {
    display: flex;

    gap: 8px;

    overflow-x: auto;

    padding: 12px;
  }

  .legal-sidebar-title {
    display: none;
  }

  .legal-sidebar a {
    white-space: nowrap;

    background: var(--gris);
  }

}


@media (max-width: 650px) {

  .legal-hero {
    margin-bottom: 45px;
  }

  .legal-hero h1 {
    letter-spacing: -2px;
  }

  .legal-card {
    grid-template-columns: 1fr;

    gap: 18px;

    padding: 24px;

    border-radius: 24px;
  }

  .legal-icon {
    width: 48px;
    height: 48px;

    border-radius: 15px;
  }

  .legal-security-grid {
    grid-template-columns: 1fr;
  }

  .security-item {
    min-height: auto;

    gap: 18px;
  }

  .legal-contact-card {
    padding: 40px 24px;

    border-radius: 26px;
  }

}


@media (max-width: 400px) {

  .legal-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .legal-card {
    padding: 20px;
  }

}


.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 14px;
  margin-top: 14px;

  font-size: .82rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;

  opacity: .75;

  transition: opacity .25s ease,
              color .25s ease;
}

.footer-legal a:hover {
  color: var(--verde);
  opacity: 1;
}

.footer-legal span {
  opacity: .35;
}


@media (max-width: 500px) {

  .footer-legal {
    flex-wrap: wrap;
    gap: 8px;

    font-size: .78rem;
  }

}

.cookie-overlay {
  position: fixed;

  inset: 0;

  z-index: 10000;

  display: flex;

  align-items: flex-end;
  justify-content: center;

  padding: 24px;

  background: rgba(20, 25, 24, .18);

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}

.cookie-overlay.show {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


.cookie-modal {
  width: 100%;

  max-width: 720px;

  display: flex;

  align-items: flex-start;

  gap: 20px;

  padding: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.98),
      rgba(248,252,251,.96)
    );

  border: 1px solid rgba(255,255,255,.9);

  border-radius: 24px;

  box-shadow:
    0 25px 80px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,1);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  transform: translateY(25px);

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1);
}

.cookie-overlay.show .cookie-modal {
  transform: translateY(0);
}


.cookie-icon {
  width: 50px;
  height: 50px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: var(--verde-light);

  box-shadow:
    0 8px 20px rgba(59,142,125,.10),
    inset 0 1px 0 #fff;

  font-size: 1.35rem;
}


.cookie-content {
  flex: 1;
}

.cookie-label {
  display: block;

  margin-bottom: 5px;

  color: var(--verde);

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: 1.2px;
}

.cookie-content h2 {
  margin: 0 0 8px;

  color: var(--verde-dark);

  font-size: 1.25rem;

  font-weight: 800;

  letter-spacing: -.3px;
}

.cookie-content p {
  margin: 0;

  color: #707070;

  font-size: .86rem;

  line-height: 1.6;
}

.cookie-more {
  margin-top: 6px !important;
}

.cookie-more a {
  color: var(--verde);

  font-weight: 700;

  text-decoration: none;
}

.cookie-more a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 10px;

  margin-top: 18px;
}

.cookie-btn {
  padding: 10px 17px;

  border-radius: 11px;

  font-family: inherit;

  font-size: .82rem;

  font-weight: 700;

  cursor: pointer;

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

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

.cookie-reject {
  background: #f1f2f3;

  color: #555;

  border: 1px solid #e2e4e6;
}

.cookie-reject:hover {
  background: #e7e8e9;
}

.cookie-accept {
  background: #3B8E7D;

  color: #fff;

  border: 1px solid var(--verde);

  box-shadow:
    0 7px 18px rgba(59,142,125,.22);
}

.cookie-accept:hover {
  background: grey;
  color:#fff;
}


@media (max-width: 600px) {

  .cookie-overlay {
    padding: 14px;
  }

  .cookie-modal {
    flex-direction: column;

    gap: 14px;

    padding: 22px;

    border-radius: 22px;
  }

  .cookie-icon {
    width: 44px;
    height: 44px;
  }

  .cookie-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

}

@media (max-width: 380px) {

  .cookie-actions {
    grid-template-columns: 1fr;
  }

}
