/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Estilos del body */
body {
    background: linear-gradient(to right, #63a0d6, #08435f);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Estilos para el header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #001f3f;
    padding: 10px 0;
    text-align: center;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

header .menu_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

header .menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

header nav {
    display: flex;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header nav ul li a:hover {
    background: #004e92;
}

/* Estilos para la sección hero */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
    color: #fff;
    padding: 225px;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 90px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 80px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Estilos para las secciones */
section {
    padding: 40px 20px;
    text-align: center;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #001f3f;
}

.section-image, .testimonial-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin: 20px 0;
    object-fit: cover;
}

.services-container, .features-container, .testimonials-container, .faq-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service, .feature, .testimonial, .faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.service h3, .feature h3, .testimonial p, .faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    overflow: hidden;
}

.testimonial-image {
    width: auto;
    height: 100%;
    border-radius: 10px;
}

.about-us {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.about-us img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.about-us-text {
    flex: 1;
}

/* Estilos del footer */
footer {
    background: #001f3f;
    color: #fff;
    padding: 40px 20px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column ul {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links li {
    display: flex;
    align-items: center;
}

.social-links li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.social-links li a i {
    margin-right: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #004e92;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #003b6f;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    width: 100%;
}

/* Botones flotantes en los divs específicos */
#phone-buttons {
    position: fixed;
    bottom: 120px; /* Distancia desde la parte inferior */
    right: 40px; /* Distancia desde la derecha */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre los botones */
    z-index: 100;
}

#whatsapp-buttons {
    position: fixed;
    bottom: 40px; /* Distancia desde la parte inferior */
    right: 40px; /* Distancia desde la derecha */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacio entre los botones */
    z-index: 100;
}

/* Botón de WhatsApp */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
}

/* Botón de Teléfono */
.call-float {
    width: 60px;
    height: 60px;
    background-color: #1e90ff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.call-float:hover {
    background-color: #1c7ed6;
}

/* Ajuste de íconos */
.whatsapp-float i, .call-float i {
    margin-top: 0;
}


/* Diseño responsivo */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }
}
