:root {
    --secondary-color: #68b42e;
    --other-color: #147647;
    --background-color: #e1ecc8;
    --grey: #EFECE5;
    --light-grey: #fafafa;
    --second-font: 'Lilita One', cursive;
}

html{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Cabin', sans-serif;
}

.nav-bar {
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: white;
    background-image: url('https://static.vecteezy.com/system/resources/previews/028/610/016/non_2x/sage-wavy-corner-fluid-corner-illustration-suitable-for-background-layout-banner-free-png.png');
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.3s;
    -webkit-transition: top 0.3s;
    -moz-transition: top 0.3s;
    -ms-transition: top 0.3s;
    -o-transition: top 0.3s;
}

@media (min-width: 768px) {
    .nav-bar .container{
        padding: 20px;
    }

    .link.hamburger-active{
        display: none;
    }
}

.nav-bar .container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.nav-bar h1 {
    color: var(--secondary-color);
    margin: 0;
}

.nav-bar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -ms-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
    gap: 20px;
}

.nav-bar-logo-icon{
    width: 70px;
    height: 60px;
}

.nav-bar-logo-text {
    width: 150px;
    height: 20px;
}

.nav-bar-logo:hover {
    scale: 1.1;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link {
    padding: 1.5rem 0;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.hamburger{
    display: none;
    padding: 15px 0;
}

.hamburger svg g{
    fill: var(--secondary-color);
}

.link.hamburger-active{
    display: flex;
}

@media (min-width: 768px) {

    .link.hamburger-active{
        display: none;
    }
}

.nav-link {
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    transition: all ease-out 0.2s;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
    color: var(--secondary-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.links {
    display: none;
}

@media (max-width: 768px) {

    .nav-bar .container{
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
    }

    .nav-bar-logo-icon {
        display: none;
    }

    .nav-bar-mobile{
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .flex {
        flex-direction: column;
        gap: 2rem;
    }

    .link {
        display: none;
        flex-direction: column;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }
}

.nav-link:hover {
    background-color: var(--secondary-color);
    color: white;
}

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

/*PRESENTATION*/

.presentation {
    position: relative;
    height: 800px;
    background-image: url('assets/vecteezy_sage-wavy-corner-fluid-corner-illustration-suitable-for_28610016.png');
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.presentation .absolute-image {
    position: absolute;
    object-fit: fill;
    height: 80%;
    width: 100%;
    bottom: 0;
}

.presentation .container{
    width: 60%;
}

.presentation h1 {
    position: relative;
    z-index: 10;
    font-size: 50px;
    text-align: center;
    color: var(--other-color);
}

.presentation h2 {
    position: relative;
    z-index: 10;
    font-size: 30px;
    font-weight: normal;
    text-align: center;
}

@media (max-width: 768px) {
    .presentation .container{
        width: 80%;
    }

    .presentation h1 {
        font-size: 30px;
    }

    .presentation .absolute-image {
        display: none;
    }
}

/*SERVICES*/

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.inclusive-content{
    height: 800px;
    background-image: url('assets/sliders/caldo-de-gallina.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.inclusive-content .container{
    height: 100%;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inclusive-content p{
    text-align: center;
    font-size: 30px;
    color: white;
}

.absolute-right {
    position: absolute;
    top: 50%;
    right: 2%;
}

.absolute-left {
    position: absolute;
    top: 50%;
    left: 2%;
}

.right {
    font-size: 40px;
    color: white;
}

.left {
    font-size: 40px;
    color: white;
}

.absolute {
    transition: all ease-out 0.2s;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
}

.absolute:hover {
    cursor: pointer;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/*PRODUCTS*/

.products-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 5rem 0px;
    background-color: white;
    background-image: url('assets/vecteezy_sage-wavy-corner-fluid-corner-illustration-suitable-for_28610016.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.products-content .container {
    width: 60%;
}

.products-content .title{
    width: fit-content;
    margin: 0 auto;
    font-size: 26px;
    color: var(--secondary-color);
    background-color: rgb(255, 255, 255, 0.9);
    padding: 0px 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.product-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 30px;
    padding: 30px 0px ;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.p-item{
    width: 250px;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    border: .2px solid var(--other-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.p-item-image {
    object-fit: fill;
    height: 150px;
}

.p-item-content {
    padding: 0px 10px;
}

.p-item h2{
    font-size: 20px;
    color: var(--other-color);
}

/*CONTACT*/

.contact-content {
    padding: 50px 0px;
    background-image: url("assets/banner\ food\ flow.jpg");
    background-position: center;
    background-size: cover;
    /*background-attachment: fixed;*/
    position: relative;
    z-index: 1;
}

.contact-content .title {
    margin: 0;
}

.cont {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.cont h2 {
    text-align: center;
}

.form-group {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid var(--grey);
    background-color: var(--light-grey);
    border-radius: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px 0;
    width: 100%;
    margin: 0 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: transparent;
    font-size: 18px;
    font-family: 'Courier New', Courier, monospace;
}

.form-group textarea {
    height: 200px;
}

.button {
    font-size: 18px;
    display: flex;
    margin: 0 auto;
    background-color: var(--tertiary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all ease-out 0.2s;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
}

.button:hover {
    background-color: var(--secondary-color);
}

.image2{
    top: unset;
    bottom: 2%;
}

/*FOOTER*/

#footer {
    padding: 20px;
}

#footer .container .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: white;
    gap: 20px;
}


@media (max-width: 900px) {
    #footer .container .row{
        flex-direction: column;
        justify-content: center;
    }
}

#footer .container .row h2{
    font-size: 24px;
    margin: 0;
}


.footer-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
}

.footer-item .img-logo{
    width: 133px;
    height: 100px;
    display:inline-block;
    background:white;
    -webkit-mask:url("assets/food\ flow\ 2@3x.png") center/contain;
            mask:url("assets/food\ flow\ 2@3x.png") center/contain;
}

.clickable-title {
    font-weight: bold;
    font-size: 30px;
    color: white;
    text-decoration: none;
    font-weight: normal;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -ms-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
}

.social-links, .social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-links a{
    color: white;
    text-decoration: none;
    font-weight: normal;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -ms-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
}

.social-links a:hover, .clickable-title:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

#copy-right{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    color: white;
}

.footer {
    background-color: var(--secondary-color);
}

/*TÉRMINOS*/

.top-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:  var(--secondary-color);
}

.title{
    color: white;
}

.content{
    width: 70%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.content img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 300px;
    max-height: 100%;
}

.content h2{
    font-size: 30px;
}

.content p{
    font-size: 20px;
    text-align: justify;
}

.content span{
    font-style: italic;
    color:  var(--secondary-color);
}

/* PLANES */
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 30px;
}

.plan-card {
  background: #fff;
  border: 2px solid var(--secondary-color);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  flex: 1 1 300px;
}


.plan-card h3 {
  margin-bottom: 5px;
}

.plan-card .sub {
  font-size: 0.85rem;
  color: #777;
}

.plan-card .price {
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

.plan-card ul {
  list-style: none;
  text-align: left;
  margin-top: 10px;
}

.plan-card ul li {
  margin: 8px 0;
}

.plan-card button {
  margin-top: 15px;
  background: none;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.plan-card button:hover {
  background-color: #e6f2f2;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  max-height: 60vh;
  overflow-y: auto; 
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.modal-buttons {
  text-align: right;
  margin-top: 20px;
}

.btn-cancelar, .btn-pagar, .btn-cerrar {
  padding: 10px 20px;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  background: none;
  color: var(--secondary-color);
  font-weight: bold;
  cursor: pointer;
}

.btn-pagar {
  background-color: var(--secondary-color);
  color: white;
  margin-left: 10px;
}

.btn-pagar:hover, .btn-cerrar:hover {
  background-color: #09595e;
  border-color: #09595e;
  color: white;
}

.qr-img {
  width: 200px;
  height: 200px;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
}




.modal-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.modal-qr-left {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.modal-qr-left h3 {
  font-size: 20px;
  font-weight: bold;
}

.modal-qr-left .qr-img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
}

.modal-form {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form input[type="file"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.btn-enviar {
  margin-top: 10px;
  padding: 10px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.btn-enviar:hover {
  background-color: #09595e;
}
.planes-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  /* background-color: #fff; */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 10px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}



/* Estilo general para inputs (sin ícono) */
input[type="text"],
input[type="email"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  background-color: #fff;
  font-family: 'Cabin', sans-serif;
}

/* Estilo específico para el select (con ícono personalizado) */
select {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  background-color: #fff;
  font-family: 'Cabin', sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%2368b42e"><polygon points="0,0 12,0 6,7"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 40px; /* espacio para que no se superponga con el ícono */
}
