/* General */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

section {
    padding: 60px 0;
}

.btn-primary {
    background: linear-gradient(135deg, #0062ff, #00bfff);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052cc, #009ddf);
}

/* Slider */
#slider img {
    height: 600px;
    object-fit: cover;
}

/* Servicios */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    height: 200px;
    object-fit: cover;
}

.card-body {
    text-align: center;
}

/* Footer */
footer p {
    margin: 0;
}

/* Botón flotante de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

/* Ventana emergente de chat */
.whatsapp-chat {
    position: fixed;
    bottom: -400px;
    right: 20px;
    width: 320px;
    background-color: #f0f9f4;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: bottom 0.5s ease;
    z-index: 999;
}

.whatsapp-chat.open {
    bottom: 80px;
}

/* Encabezado del chat */
.chat-header {
    background-color: #25d366;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-info {
    display: flex;
    align-items: center;
}

.chat-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.chat-header h5 {
    margin: 0;
    font-size: 1.2rem;
}

/* Botón de cerrar */
.close-chat {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Cuerpo del chat */
.chat-body {
    padding: 20px;
    font-size: 0.9rem;
}

/* Contenedor de mensajes */
.message-container {
    margin-bottom: 15px;
}

/* Mensaje recibido */
.received-message {
    background-color: #e1ffc7;
    border-radius: 10px 10px 10px 0;
    padding: 10px 15px;
    margin-bottom: 10px;
    max-width: 80%;
    text-align: left;
    color: #333;
}


/* Botón de abrir chat */
.btn-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-success:hover {
    background-color: #1ebf57;
}

/* Responsividad */
@media (max-width: 768px) {
    .whatsapp-chat {
        width: 90%;
        right: 5%;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
}
/* SECCIÓN DE SERVICIOS MODERNA */
#services {
    background-color: #f8f9fa; /* Fondo gris claro para contraste */
    padding: 80px 20px;
}

/* Tarjetas de servicio */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Sombra y movimiento en hover */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Efecto de luz sutil al pasar el mouse */
.service-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(255, 255, 255, 0.1), transparent);
    transition: 0.6s;
}

.service-card:hover::before {
    top: 0;
    left: 0;
}

/* Íconos en negro con fondo redondeado */
.service-card i {
    background: #000;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Cambiar ícono en hover */
.service-card:hover i {
    transform: rotate(15deg);
}

/* Títulos de servicios */
.service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 15px;
}

/* Texto de servicios */
.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsividad */
@media (max-width: 768px) {
    .service-card {
        padding: 30px 15px;
    }

    .service-card i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h4 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

/* Efecto general en todos los íconos */
.social-icons i,
.social-footer i {
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

/* Facebook */
.social-icons a[data-app="fb"]:hover i,
.social-footer a[data-app="fb"]:hover i {
    color: #1877F2; /* Azul Facebook */
}

/* Instagram - Gradiente Real */
.social-icons a[data-app="ig"]:hover i,
.social-footer a[data-app="ig"]:hover i {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #e4405f; /* Color de respaldo */
}

/* YouTube */
.social-icons a[data-app="yt"]:hover i,
.social-footer a[data-app="yt"]:hover i {
    color: #FF0000; /* Rojo YouTube */
}

/* TikTok - Cambia a blanco */
.social-icons a[data-app="tt"]:hover i,
.social-footer a[data-app="tt"]:hover i {
    color: #ffffff; /* Blanco TikTok */
}

/* Efecto de escala en todos */
.social-icons a:hover i,
.social-footer a:hover i {
    transform: scale(1.2);
}
/* Sección FAQ */
#faq {
    font-family: 'Inter', sans-serif; /* Fuente moderna para todo el contenido */
}

/* Título */
#faq h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    text-align: center;
}

/* Botón de cada pregunta */
.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

/* Cuerpo del acordeón */
.accordion-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/*Tipo de letra de quienes somos*/
/* Títulos más modernos */
#about h2, #services h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    text-align: center;
}

/* Texto del contenido */
#about p, #services p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
}
/* Sección de Testimonios */
#testimonials {
    background: #f8f9fa;
    padding: 80px 20px;
}

/* Título de la sección */
#testimonials h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    text-align: center;
}

/* Nombre del Cliente */
#testimonials h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
}

/* Texto del Testimonio */
#testimonials p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* Imagen de Cliente */
#testimonials img {
    border: 3px solid #0d6efd;
    padding: 5px;
}

/* Controles del Carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(50%);
    transition: transform 0.3s ease-in-out;
}

/* Efecto de Hover en los Controles */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.2);
}
/* Sección de Contacto */
#contact {
    background: #f8f9fa;
    padding: 80px 20px;
}

/* Títulos */
#contact h2, #contact h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    text-align: center;
}

/* Estilos para los videos */
.video-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contenedor de los videos */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

/* Hover en los videos */
.video-container:hover {
    transform: scale(1.03);
}
