* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px; /* Ajusta el tamaño según necesites */
    height: auto;
    margin-right: 10px; /* Espacio entre el ícono y el texto */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #222;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: #ff6200;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1558611848-73f7eb4001a1?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #14d4b4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Transición suave */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Sombra inicial como el WhatsApp */
}

.cta-button:hover {
    background-color: #08b296 ; 
    transform: scale(1.1); /* Aumenta un 10% el tamaño */
    box-shadow: 0 6px 12px rgba(0,0,0,0.4); /* Sombra más pronunciada */
}

.button-enviar {
    display: inline-block;
    padding: 15px 35px;
    background-color: #14d4b4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Transición suave */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Sombra inicial como el WhatsApp */
    border: none; /* Elimina cualquier borde */
}

.button-enviar:hover {
    background-color: #08b296; 
    transform: scale(1.1); /* Aumenta un 10% el tamaño */
    box-shadow: 0 6px 12px rgba(0,0,0,0.4); /* Sombra más pronunciada */
}

/* Services Section */
.services {
    padding: 60px 5%;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.service-card h3 {
    margin: 15px 0;
}

/* Franja gris y fondo */
.schedule {
    position: relative;
    padding: 60px 5%; 
    background-color: #f1f1f1;
    text-align: center;
    z-index: 1; /* Asegura que el contenido esté por encima de la capa opaca */
} 
.schedule h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    border: 1px solid #ddd;
}

th {
    background-color: #14d4b4;
    color: white;
}

/* Estilos para la tabla de horarios con animación */
.schedule {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    width: 100%;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.pretty-table {
    width: 70%;
    border-collapse: collapse;
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}
.pretty-table th, .pretty-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    transition: background-color 0.3s;
}
.pretty-table th {
    background: #14d4b4;
    color: white;
    font-size: 18px;
}
.pretty-table tr:nth-child(even) {
    background: #f2f2f2;
}
.pretty-table tr:hover {
    background: #e8f8f5;
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}




/*.pretty-table {
        width: 100%;
        max-width: 750px;
        margin: 20px auto;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .pretty-table th,
    .pretty-table td {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .pretty-table th {
        background-color: #4CAF50;
        color: white;
        text-transform: uppercase;
    }

    .pretty-table tr:nth-child(even) {
        background-color: #f8f8f8;
    }

    .pretty-table tr:hover {
        background-color: #f1f1f1;
        transition: background-color 0.3s ease;
    }

    .schedule h2 {
        text-align: center;
        color: #333;
        margin-bottom: 20px;
}*/







/* Contact Section */
.contact-form input:focus,
    .contact-form textarea:focus {
        box-shadow: 0 4px 12px rgba(20,212,180,0.3);
        transform: scale(1.02);
    }
    .button-enviar:hover {
        background-color: #08b296;
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(8,178,150,0.5);
    }

.contact {
    padding: 60px 5%;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;/*separacion entre campos*/
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    align-self: center;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #222;
    color: white;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Podrías agregar un menú hamburguesa con JS */
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

.whatsapp-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.whatsapp-float {
        transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .whatsapp-float:hover {
        background-color: #1ebe56; /* Verde más oscuro */
        transform: scale(1.1); /* Aumenta ligeramente el tamaño */
        box-shadow: 0 6px 12px rgba(0,0,0,0.4); /* Sombra más pronunciada */
    }

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.hero-content p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}


/*inicio de carrusel*/
.carousel-container {
    position: relative;
    width: 40%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-slide img {
    width: 50%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}
.prev { left: 10px; }
.next { right: 10px; }
/*fin de carrusel*/