  /* -----------------------FUENTES --------------------------*/

  .homemade-apple-regular {
    font-family: "Homemade Apple", cursive;
    font-size: 140px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 3px;
  }


  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }

  /* ----------------------- NAVBAR --------------------------*/


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #f5f5f5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
  }

  .navbar .logo {
    color: #f5f5f5;
    font-size: 24px;
    font-weight: bold;
  }

  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
  }

  .nav-links li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.3s;
  }

  .nav-links li a:hover {
    color: #1da1f2;
  }





  /* HERO */

  .hero {
    background-color: #f5f5f5;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 80px;
  }

  .hero-content h1 {
    font-family: 'Homemade Apple', cursive;
    font-size: 64px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 500px;
  }

  .btn {
    padding: 12px 25px;
    background-color: #1da1f2;
    color: #fff;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }

  .btn:hover {
    background-color: #0d8bdc;
  }

  /* --- HERO RESPONSIVE!!!!!!!!!! --- */
/* --- HERO RESPONSIVE --- */
@media (max-width: 768px) {

  .hero {
    height: auto;
    padding: 120px 20px 40px; /* <-- nuevo padding top más grande */
    text-align: center;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 90%;
    margin: 0 auto 25px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  .hero {
    padding: 140px 20px 40px; /* <-- aún más en celulares muy chicos */
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 15px;
  }
}


  /* -------------------------ACORDEÓN -------------------------*/

.contenedor-columnas {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Crea dos columnas de igual tamaño */
  gap: 10px; /* Opcional: espacio entre columnas */
}



  /* ---------- fin de prueba columnas----------------*/

.acordeon-section {
  
  
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 80px;
}

.acordeon-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.intro-servicios {
  max-width: 700px;
  font-size: 18px;
  color: #000000;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* --- RESPONSIVE -COLUMNA S E R V I C I O S!!!!-- */
@media (max-width: 768px) {

  .contenedor-columnas {
    grid-template-columns: 1fr; 
    text-align: center; 
  }

  .acordeon-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
  }

  .acordeon-section h2 {
    font-size: 32px;
  }

  .intro-servicios {
    font-size: 16px;
    margin-bottom: 30px;
  }
}


/* ---------------------- ACORDEÓN ---------------------- */

.acordeon details {
  background: #fff;
  border-radius: 14px;
  padding: 20px 25px;
  margin-bottom: 18px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.acordeon summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

summary::-webkit-details-marker {
  display: none;
}

.icono {
  font-size: 26px;
  color: #000;
  transition: transform 0.3s ease;
}

details[open] .icono {
  transform: rotate(180deg);
}


/* Contenido dentro del acordeón */
.contenido {
  margin-top: 15px;
  padding-right: 10px;
  font-size: 17px;
  line-height: 1.55;
  color: #444;
  animation: fadeIn 0.3s ease;
}

/* Animación suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------- RESPONSIVE ---------------------- */

@media (max-width: 600px) {
  .acordeon-section h2 {
    font-size: 32px;
  }

  .acordeon summary {
    font-size: 20px;
  }

  .icono {
    font-size: 22px;
  }
}


/*------ CONTACTO  --- ESTRUCTURA SECCIÓN DE LA PAVA QUE DESARROLLÓ EL PROFE-----------------------*/


  .producto {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;
    background-color: #fff;
  }

  .producto .imagen {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .producto .imagen img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
  }

  .producto .imagen img:hover {
    transform: scale(1.03);
  }

  .producto .detalle {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .producto .detalle h2 {
    margin: 0;
    font-size: 40px;
    color: #111827;
  }

  .producto .descripcion {
    font-size: 18px;
    line-height: 1.5;
    color: #374151;
  }

  .producto .detalle button {
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    background-color: #d7d7d7;
    cursor: pointer;
    padding: 12px 18px;
    flex-wrap: wrap;
    transition: filter 0.5s ease;
  }

  .producto .input-file::file-selector-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    background-color: #56c0f6;
    color: #fff;
    font-size: 15px;
  }

  .producto .input-file::file-selector-button:hover {
    background-color: #45a049;
  }

  .producto .comprar:hover {
    filter: brightness(1.1);
  }

  .carrito {
    color: #555;
    border: 2px solid #0f8f68;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: bold;
    transition: transform 0.5s ease;

  }

  .carrito:hover {
    transform: scale(1.05);
  }


/* ---------------------- RESPONSIVE contacto ---------------------- */

@media (max-width: 768px) {
  .producto {
    flex-direction: column;
    gap: 40px;
    padding: 50px 20px;
    text-align: center;
  }

  .producto .imagen img {
    max-width: 80%;
  }

  .producto .detalle h2 {
    font-size: 32px;
  }

  .producto .descripcion {
    font-size: 16px;
  }

  .producto .detalle button,
  .producto .input-file {
    width: 100%;
    max-width: 300px;
    align-self: center;
  }
}



  /* ----------- WHATSAPP FLOTANTE----------- */

  .whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: #6a6a6a; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 8px rgb(255, 255, 255);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(91, 91, 91, 0.5);
}

.whatsapp-float i {
  color: white; 
}



  /* -----------------------FOOTER --------------------------*/


  .footer {
    background-color: #24262B;
    color: #fff;
    padding: 40px 50px;
  }

  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-logo h4 {
    font-family: "Homemade Apple", cursive;
    font-size: 20px;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
  }

  .footer-nav ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-nav ul li a:hover {
    color: #fff;
  }

  .footer-social h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-social a {
    display: inline-block;
    margin: 0 5px;
    color: #bbb;
    font-size: 20px;
    transition: color 0.3s, transform 0.3s;
  }

  .footer-social a:hover {
    color: #ffffff;
    transform: scale(1.2);
  }

  /* Responsive: en pantallas chicas se debería apilar!! hacer prueba */
  @media (max-width: 768px) {

    .footer-row {
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }

    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }

  }