@font-face {
    font-family: 'Titulos';
    src: url('../assts/font/Acmatic/Acmatic-Personal.otf') format('opentype');
}


@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&display=swap');

:root {
    --primary-color: #ff6b6b;
    --secondary-color: rgb(248,166,30);
    --text-color: #2d3436;
    --background-color: rgb(233,30,33);
    --header-height: 70px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .logo-img{
    width: 30%;
    cursor: pointer;
  }
  
  
  @keyframes cambiarTamaño {
    0% {
      width: 300px;
      height: 40px;
    }
    50% {
      width: 305px;
      height: 45px;
    }
    100% {
      width: 300px;
      height: 40px;
    }
  }
  
  .bottonpedir {
    width: 400px;
    height: 40px;
    font-size: 1em;
    background: rgb(53, 181, 36);
    padding: 10px;
    margin-right:25px ;
    border-radius: 8px;
    font-family: 'Titulos';
    color: white;
    animation: cambiarTamaño 1s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1em;
  }
  
    /* ESTILOS MODAL */
/* Estilos del modal */
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  background: rgba(0, 0, 0, 0.6);
  position: fixed; inset: 0;
  display: flex; justify-content: center; align-items: center;
}

.modal__container {
  background: white;
  padding: 2rem;
  max-width: 700px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  height: 200px;
}

.modal__btn {
  background: rgb(53, 181, 36);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  margin: 10px 0; /* Espaciado entre botones */
  display: inline-block; /* Asegura que los botones no se apilen */
  cursor: pointer;
  font-family: 'Titulos';
  font-size: 1em;
  text-decoration: none;
}

/* Estilo de la "X" */
.modal__close {
  background: none;
  border: none;
  font-size: 2rem;  /* Tamaño de la "x" */
  position: absolute;
  top: 10px;
  right: 10px;
  color: #333;
  cursor: pointer;
}

.modal__close:hover {
  color: var(--primary-color);
}

.modal__buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  width: 400px;
}
  
  
  /* Header Styles */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
    font-family: "Lato", sans-serif;
  }

  .main-header:hover {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo{
    position: relative;
    left: -10%;
  }

  .logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: var(--primary-color);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url('../assts/img/FONDO.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
  }
  
  .hero-content {
    color: white;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /*font-family: 'Titulos';*/
    font-family: "Lato", sans-serif;
  }
  
  .hero p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transform: rotate(90deg);
  }

  
  /* About Section */
  .about {
    padding: 100px 0;
    background-color: #f8f9fa;
    font-family: "Lato", sans-serif;
  }
  
  .about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .team-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .team-member {
    text-align: center;
    max-height: 300px;
    transition: 0.3s;
  }

  .team-member:hover{
    margin-top: -10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  }
  
  .team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  
  /* Menu Section */
  .menu {
    padding: 100px 0;
  }
  
  .menu h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.menu-item img {
  width: 100%;
  height: 500px; /* O ajustable: 240px si querés más altura */
  object-fit: cover;
  object-position: center top;
  border-bottom: 2px solid #f0f0f0;
}


.menu-item h3 {
  font-size: 1.5rem;
  margin: 1rem;
  color: #0f2b66; /* Azul petróleo */
  font-weight: 600;
}

.menu-item p {
  margin: 0 1rem 1.5rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}


  /* Footer Styles */
  .footer {
    background-color: #f8f9fa;
    color: var(--secondary-color);
    padding: 3rem 0;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .social-links a {
    color: var(--primary-color);
    font-size: 2rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--header-height);
  }
  
  .copyright {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .copyright p:first-child {
    margin-bottom: 0.5rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  
    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .team-photos {
      grid-template-columns: 1fr;
    }

    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 1.5rem;
      }
    
      .social-links a {
        font-size: 1.5rem;
      }
      
    .logo-img{
        margin-left: 150px;
    }  
      
  }

.about {
  padding: 80px 20px;
  background-color: #fffaf0;
}

.about h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #0F2B66;
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 2;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  max-width: 700px;
  text-align: justify;
}

.team-photos {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.team-member {
  background-color: #ffffff;
  padding: 16px;
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 240px;
  width: 100%;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #FF6A13;
  margin-bottom: 12px;
}

.team-member p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0F2B66;
}

/* Desktop layout: texto a la izquierda y fotos a la derecha */
@media (min-width: 992px) {
  .about-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .about-text {
    text-align: left;
  }

  .team-photos {
    flex-direction: column;
    align-items: center;
  }
}

.team-member {
  background-color: #ffffff;
  padding: 16px;
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 240px;
  width: 100%;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.team-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #FF6A13;
  margin-bottom: 12px;
}

.team-member p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0F2B66;
}



/* Responsive */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .about-text {
    flex: 1.5;
    padding-right: 2rem;
  }

  .team-photos {
    flex: 1;
    justify-content: flex-start;
  }
}

  
  @media (max-width: 480px) {
    .main-header {
      height: auto;
      padding: 1rem 0;
    }
  
    .header-content {
      flex-direction: column;
      gap: 1rem;
    }
  
    nav ul {
      gap: 1rem;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .menu-grid {
      grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 1.5rem;
      }
    
      .social-links a {
        font-size: 1.5rem;
      }
  }
  /* Sección ubicación */
.location {
  padding: 100px 0;
  background-color: #fff6f6;
  font-family: "Lato", sans-serif;
}

.location h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Testimonios */
.testimonials {
  padding: 100px 0;
  background-color: #fefefe;
  font-family: "Lato", sans-serif;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.testimonial {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
}

.testimonial .rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonial span {
  display: block;
  font-weight: 600;
  color: #777;
  font-size: 0.95rem;
}

/* Formulario */
.testimonial-form {
  margin-top: 3rem;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.testimonial-form h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: var(--text-color);
}

.testimonial-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-form input,
.testimonial-form textarea,
.testimonial-form select {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  resize: vertical;
}

.testimonial-form textarea {
  min-height: 100px;
}

.testimonial-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-form button:hover {
  background-color: #e74c3c;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
}

.branches {
  padding: 100px 0;
  background: #f9f9f9;
}

.branches h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #0f2b66;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.branch-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.branch-card:hover {
  transform: translateY(-6px);
}

.branch-info {
  padding: 1.5rem;
}

.branch-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0f2b66;
  display: flex;
  align-items: center;
}

.branch-info .icon {
  font-size: 1.4rem;
  margin-right: 0.5rem;
}

.branch-info p {
  color: #444;
  font-size: 0.95rem;
}

.map-container {
  width: 100%;
  height: 250px;
  border-top: 1px solid #eee;
}

/* General container spacing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Secciones generales */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #0f2b66;
}

.section-text {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Productos */
.productos-subtitle {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: #333;
  text-align: center;
}

.productos-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Contacto */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  font-weight: bold;
  color: #0f2b66;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background-color: #ff6a13;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e65c0c;
}

/* Encontranos */
.social-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.social-item {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.social-item a {
  color: #0f2b66;
  text-decoration: none;
  font-weight: bold;
}

.social-item a:hover {
  text-decoration: underline;
}

/* Términos y condiciones */
.terminos-article {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.terminos-subtitle {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #0f2b66;
}
