/* Fuentes elegantes */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Great+Vibes&display=swap');

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #1A1A2E;
    background-color: #F4E9D7;
}

.logo-img{
    border-radius: 50%;
    width: 180px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #1A1A2E;
    font-family: 'Great Vibes', cursive;
}

/* Header */
header {
    background-color: #F4E9D7;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Cormorant Garamond', serif;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

/* Navegación */
.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 1rem 2rem;
    border-radius: 8px;
}

.nav-list li a {
    color: #1A1A2E;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-list li a:hover,
.nav-list li a:focus {
    background-color: #A3195B;
    color: #fff;
    outline: none;
    animation: bounce 0.4s ease;
}

.nav-list li a:focus {
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.3);
}

/* Botón principal */
.cta-button {
    display: inline-block;
    background-color: #A3195B;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Efecto al pasar el mouse o enfocar con teclado */
.cta-button:hover,
.cta-button:focus {
    background-color: #6A0D3B;
    animation: bounce 0.4s ease;
    outline: none;
}

/* Accesibilidad para enfoque de teclado */
.cta-button:focus {
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.3);
}

/* Hero */
#hero {
    color: #394B59;
    text-align: center;
    padding: 100px 0;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* Grids */
.servicios-grid,
.caracteristicas-grid,
.ejemplos-grid,
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Animaciones en tarjetas */
.servicio,
.caracteristica,
.testimonio {
    text-align: center;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.servicio:nth-child(1) { animation-delay: 0.1s; }
.servicio:nth-child(2) { animation-delay: 0.2s; }
.servicio:nth-child(3) { animation-delay: 0.3s; }
.servicio:nth-child(4) { animation-delay: 0.4s; }
.servicio:nth-child(5) { animation-delay: 0.5s; }
.servicio:nth-child(6) { animation-delay: 0.6s; }

.servicio i,
.caracteristica i {
    font-size: 2.2em;
    color: #A3195B;
    margin-bottom: 15px;
}

.ejemplo img {
    width: 100%;
    border-radius: 12px;
}

/* Contacto */
#contacto form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contacto input,
#contacto select,
#contacto textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1em;
}

#contacto button {
    padding: 12px;
    background-color: #A3195B;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#contacto button:hover {
    background-color: #6A0D3B;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

footer .footer-info h3 {
    margin-bottom: 10px;
}

footer .redes-sociales a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

/* Slider */
#slider-eventos {
    padding: 50px 0;
    background-color: #f7f9f9;
}

.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #D8A7B1;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}


.slide-content {
    padding: 30px;
}

.slide-content h2 {
    font-size: 2em;
    color: #1A1A2E;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.2em;
    color: #1A1A2E;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.whatsapp-button,
.example-button {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-button {
    background-color: #25d366;
    color: #fff;
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

.example-button {
    background-color: #748F98;
    color: #fff;
}

.example-button:hover {
    background-color: #a0c5e1;
}

/* Swiper flechas */
.swiper-button-next,
.swiper-button-prev {
    color:#394B59;
}

/* Contenedor que alinea verticalmente */
.social-container {
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction:row;
    gap: 20px; /* espacio entre botones */
}

/* Estilo general para todos los botones */
.social-float {
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 5px #999;
    transition: transform 0.3s ease;
}

.social-float:hover {
    transform: scale(1.1);
}

/* Colores personalizados */
.social-float.whatsapp { background-color: #25d366; }
.social-float.facebook { background-color: #3b5998; }
.social-float.instagram { background-color: #e4405f; }
.social-float.x { background-color: #24A4F2; }



/* Animaciones */
@keyframes bounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-5px); }
    60%  { transform: translateY(2px); }
    100% { transform: translateY(0); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
