.elementor-kit-68{--e-global-color-primary:#D56F4A;--e-global-color-secondary:#7AA583;--e-global-color-text:#3E362F;--e-global-color-accent:#61CE70;--e-global-color-6b76cf7:#FDF6EC;--e-global-color-41f1e0a:#EAF4FA;--e-global-color-5b4034b:#333333;--e-global-color-063241b:#555555;--e-global-typography-primary-font-family:"Open Sans";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-68 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.page-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Estilos generales */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* Encabezado */
.header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header h1 {
    color: #17a2b8;
    font-size: 1.8em; /* Tamaño más pequeño para móviles */
}

.header nav {
    display: flex;
    flex-direction: column; /* Menú en columna para móviles */
    gap: 10px;
}

.header nav a {
    font-size: 1em;
}

.header nav button {
    width: 100%; /* Botón de ancho completo en móviles */
    margin-top: 10px;
}

/* Secciones */
.section {
    padding: 40px 20px; /* Menos padding en móviles */
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
}

.section h2 {
    font-size: 2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 15px;
}

.section p {
    font-size: 1em; /* Tamaño más pequeño para móviles */
    line-height: 1.6;
}

.section button {
    width: 100%; /* Botón de ancho completo en móviles */
    margin-top: 10px;
}

/* Tarjetas */
.card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

/* Pie de página */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Galería */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px; /* Menos padding en móviles */
}

.gallery img {
    border-radius: 15px;
    width: 100%; /* Imágenes de ancho completo en móviles */
    max-width: 300px;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Contenedor de video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 10px 0; /* Menos margen en móviles */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Acordeón */
.accordion {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    margin: 10px 0; /* Menos margen en móviles */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion:hover {
    background-color: #e9ecef;
}

.accordion-content {
    display: none;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-top: 10px;
}

.accordion.active .accordion-content {
    display: block;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Gráficos */
.graphic {
    width: 100%;
    height: 150px; /* Altura más pequeña para móviles */
    background: linear-gradient(90deg, #17a2b8, #138496);
    border-radius: 15px;
    margin: 10px 0; /* Menos margen en móviles */
    position: relative;
    overflow: hidden;
}

.graphic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 10.01%);
    animation: move 5s linear infinite;
}

@keyframes move {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sección de fotos */
.photo-section {
    background-image: url('https://via.placeholder.com/1200x400');
    background-size: cover;
    background-position: center;
    padding: 60px 20px; /* Menos padding en móviles */
    text-align: center;
    color: white;
    margin: 10px 0; /* Menos margen en móviles */
}

.photo-section h2 {
    font-size: 2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 15px;
}

.photo-section p {
    font-size: 1.2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 20px;
}

/* Sección blanca */
.white-section {
    background-color: #ffffff;
    padding: 40px 20px; /* Menos padding en móviles */
    text-align: center;
    margin: 10px 0; /* Menos margen en móviles */
}

/* Sección de gradiente frío */
.color-gradient-section {
    background: linear-gradient(135deg, #17a2b8, #138496);
    padding: 40px 20px; /* Menos padding en móviles */
    text-align: center;
    color: white;
    margin: 10px 0; /* Menos margen en móviles */
}

.color-gradient-section h2 {
    font-size: 2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 15px;
}

.color-gradient-section p {
    font-size: 1.2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 20px;
}

/* Sección cálida */
.warm-section {
    background-color: #fff3e0;
    padding: 40px 20px; /* Menos padding en móviles */
    text-align: center;
    margin: 10px 0; /* Menos margen en móviles */
}

.warm-section h2 {
    font-size: 2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 15px;
}

.warm-section p {
    font-size: 1.2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 20px;
}

/* Sección de gradiente cálido */
.warm-gradient-section {
    background: linear-gradient(135deg, #ffa726, #fb8c00);
    padding: 40px 20px; /* Menos padding en móviles */
    text-align: center;
    color: white;
    margin: 10px 0; /* Menos margen en móviles */
}

.warm-gradient-section h2 {
    font-size: 2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 15px;
}

.warm-gradient-section p {
    font-size: 1.2em; /* Tamaño más pequeño para móviles */
    margin-bottom: 20px;
}

/* Media Queries para móviles */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.5em; /* Tamaño más pequeño para móviles */
    }

    .section h2 {
        font-size: 1.8em; /* Tamaño más pequeño para móviles */
    }

    .section p {
        font-size: 0.9em; /* Tamaño más pequeño para móviles */
    }

    .card {
        margin: 5px; /* Menos margen en móviles */
    }

    .gallery img {
        max-width: 100%; /* Imágenes de ancho completo en móviles */
    }
}/* End custom CSS */
