.elementor-kit-4{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--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-4 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.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@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 *//* styles.css */

/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #fff;
}

/* Encabezado */
.header {
    background-image: url('path_to_background_image.jpg');
    background-size: cover;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    color: #ccc;
}

.cta-header {
    background-color: #e74c3c;
    border: none;
    padding: 15px 30px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-header:hover {
    background-color: #c0392b;
}

/* Descripción del Producto */
.description {
    background-color: #333;
    padding: 50px 20px;
}

h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.description p {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
}

/* Beneficios del Pack */
.benefits {
    background-color: #444;
    padding: 50px 20px;
}

.benefits ul {
    list-style-type: none;
    margin-top: 20px;
}

.benefits li {
    font-size: 1.2rem;
    color: #fff;
    margin: 10px 0;
}

/* Botón CTA */
.cta-section {
    background-color: #222;
    text-align: center;
    padding: 30px 0;
}

.cta-button {
    background-color: #e74c3c;
    border: none;
    padding: 15px 30px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* Testimonios */
.testimonials {
    background-color: #333;
    padding: 50px 20px;
}

.testimonial-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #444;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    margin: 10px;
    text-align: center;
}

.testimonial-card p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Pie de página */
.footer {
    background-color: #111;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    font-size: 0.9rem;
    color: #777;
}/* End custom CSS */