body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 13px;
}


/* Estilos para el bot�n hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 15px;
    background-color: #f1f1f1;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Estilos para el men� */
.menu {
    height: 100vh;
    width: 200px;
    background-color: #04b5f8;
    /* #f1f1f1; */
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    border-bottom-right-radius: 190px;

}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* .menu li {
    border-bottom: ;
    1px solid #ddd;
} */

.menu a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: white;
    /* #333; */
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #f9cb0a;
    /* #ddd; */
    color: black;
    /* #333; */
}

.content {
    /* padding: ;
    20px; */
    margin-left: 200px;
    /* Ajuste para desktop */
    margin-top: -660px;
    top: 0;
}

/* Estilos para el contenido de las pesta�as */
.tabcontent {
    display: none;
    padding: 20px;
    min-height: 500px;
    background-color: #fff;
    margin-top: 50px;
}

.tabcontent.active {
    display: block;
}

/* Estilos para dispositivos m�viles */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;

    }

    .hamburger {
        display: block;
        background-color: #04b5f8;
    }

    .menu-active {
        display: block;
    }

    .menu-close {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .menu-close.active {
        display: block;
    }

    .content {
        /* padding: ;
        20px; */
        margin-left: 0;
        margin-top: -10px;
        /* -70px; */
        /* Ajuste para el men� en dispositivos m�viles */
    }
}

/***SLIDESHOW****/

/* Estilos para los slideshows */
.slideshow-container {
    max-width: 100%;
    /* 800px; */
    position: relative;
    margin: auto;
    margin-top: 0px;
}

.mySlides {
    display: none;
    width: 100%;
}

.mySlides img {
    width: 100%;
    height: auto;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.8);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.dots {
    text-align: center;
    padding-top: 20px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: transparent;
    /* #717171; */
}

#logo {
    width: 100%;
    height: auto;
    margin-top: 50px;
}

#cerrarS {
    background-color: #04b5f8;
    /* red; */
    color: white;
    /* margin-top: ;
    50px; */
}

#cerrarS:hover {
    background-color: red;
    color: white;
}

.logo {
    background-color: #04b5f8;
    padding: 10px;
}

.logo:hover {
    background-color: #04b5f8;
}

/* Estilos para el footer */
footer {
    background-color: #04b5f8;
    color: #fff;
    padding: 30px 0;
    /* position: ;
    absolute; */
    bottom: 0;
    width: 100%;
}

.footer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    text-decoration: none;
    color: #fff;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section p {
    margin: 10px 0;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.subscription-form {
    display: flex;
}

.subscription-form input[type="email"] {
    flex: 2;
    padding: 10px;
}

.subscription-form button {
    flex: 1;
    background-color: #fff;
    color: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.menu a.active {
    background-color: white;
    color: black;
}


/* Estilos para el popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.whatsapp-input {
    margin-bottom: 20px;
}

.preview-order {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.send-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #04b5f8;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-button:hover {
    background-color: #017bb0;
}

/* Agregamos un nuevo estilo para el bot�n de enviar orden */
.send-order-button {
    background-color: #04b5f8;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-order-button:hover {
    background-color: #017bb0;
}

/* Estilos del popup */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 1000;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup-content {
    margin-bottom: 10px;
}

/* Estilos del bot�n de cerrar */
.close-button {
    background-color: #ccc;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    float: right;
}

.close-button:hover {
    background-color: #999;
}

/* Estilo del bot�n de WhatsApp */
.whatsapp-button {
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}


#table1 {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border: 0px solid #fff;
}

#table1 td {
    border: 1px solid #ccc;
    padding: 10px;
    vertical-align: top;
    background-color: #fff;
    border: 0px solid #fff;
    border-right: 1px solid #ccc;
}


#td1 {
    border: 1px solid #ccc;
    padding: 10px;
    vertical-align: top;
    width: 40%;
    background-color: #fff;
    padding: 30px;
    border: 0px solid #fff;
    border-right: 1px solid #ccc;
}


#td2 {
    width: 60%;
    /* height: ; */
    background-color: #fff;
    padding: 30px;
    border: 0px solid #fff;
}

/* Estilos para los div en las celdas */
#div1,
#div2 {
    position: sticky;
    top: 0;
    background-color: white;
    /* #f5f5f5; */
    padding: 10px;
}


.div1 {
    width: 97%;
    height: auto;
    /* 200px; */
    background-color: white;
    /* yellow; */
    border-bottom: 2px solid lightgray;
    padding: 10px 10px 10px 10px;
    margin: 10px 10px 10px 10px;
    overflow: auto;
    font-size: 16px;

}


.contact-button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 20px;
    text-decoration: none;
}

.contact-button:hover {
    background-color: #0056b3;
}

.team-section {
    margin-top: 20px;
    /* border-top: ;
    1px solid #ccc; */
    padding-top: 20px;
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: #ccc;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 24px;
    font-weight: bold;
}

.team-role {
    font-size: 18px;
}


.box {
    width: 25%;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    text-align: center;
}

.container3 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 10px;
}


/* < !------login--------> */
.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 300px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Estilos del formulario */
form {
    display: flex;
    flex-direction: column;
}

.input-container {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    background-color: #04b5f8;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 3px;
    cursor: pointer;
    margin: 5px;
}

button:hover {
    background-color: #f9cb0a;
}

.button {
    background-color: #04b5f8;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 3px;
    cursor: pointer;
    margin: 5px;
}

.button:hover {
    background-color: #f9cb0a;
}

input[type="submit"],
button {
    padding: 10px 20px;
    background-color: #04b5f8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover,
button:hover {
    background-color: #f9cb0a;
    color: black;
}

option {
    height: 100px;
}


#tdlog {
    border: 0px solid transparent;

}



input[type="text"],
input[type="tel"],
input[type="email"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px;
}



.input-container {
    margin-bottom: 15px;
}

.input-container label,
.input-container input {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.input-container input {
    width: 200px;
    /* Ajusta el ancho seg�n sea necesario */
}

/* < !----PLANES CSS----> */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th,
td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #333;
    color: #fff;
}

tr:hover {
    background-color: #f2f2f2;
}

.highlight {
    background-color: #f9cb0a;
    ;
}

@media screen and (max-width: 600px) {
    table {
        font-size: 14px;
    }

    th,
    td {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
    }
}


#payment-details-premium,
#payment-details-gratis {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
}

p {
    font-size: 16px;
}

.box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 0px solid #ccc;
}

/* Estilos CSS para la presentaci�n del equipo */
.equipo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.miembro {
    width: 250px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.miembro img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.miembro h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.miembro p {
    margin-bottom: 5px;
}