.elementor-76 .elementor-element.elementor-element-930dba3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-76 .elementor-element.elementor-element-f55f296{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3bc42c5 */@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;900&display=swap');

/* Variables de colores */
:root {
    --cumplearte-primary: #e8432e;
    --cumplearte-secondary: #45c4c0;
    --cumplearte-accent: #ffde59;
    --cumplearte-dark: #333;
    --cumplearte-light: #f9f9f9;
    --cumplearte-border: #ddd;
}

/* Estilos base con tipografía Archivo */
#cumplearte-app {
    font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    color: var(--cumplearte-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cumplearte-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    color: var(--cumplearte-primary);
    font-size: 2.2em;
    margin-top: 0.5em;
    border-bottom: 3px solid var(--cumplearte-primary);
    padding-bottom: 0.2em;
    display: inline-block;
    letter-spacing: -0.02em;
}

.cumplearte-section-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    color: var(--cumplearte-dark);
    font-size: 1.8em;
    border-left: 5px solid var(--cumplearte-primary);
    padding-left: 15px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    letter-spacing: -0.01em;
}

.cumplearte-container {
    margin-top: 30px;
}

.cumplearte-intro-text {
    font-size: 1.2em;
    max-width: 900px;
    margin-bottom: 2em;
    font-weight: 400;
}

/* Estilos de tarjetas */
.cumplearte-card {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cumplearte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.cumplearte-info-card {
    background-color: var(--cumplearte-light);
    border-left: 5px solid var(--cumplearte-secondary);
}

.cumplearte-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.cumplearte-info-box {
    flex: 1;
    min-width: 250px;
    background-color: var(--cumplearte-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cumplearte-info-box h4 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    color: var(--cumplearte-primary);
    margin-top: 0;
    border-bottom: 2px solid var(--cumplearte-primary);
    padding-bottom: 10px;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.cumplearte-info-box ul,
.cumplearte-info-box ol {
    margin: 0;
    padding-left: 20px;
}

.cumplearte-info-box li {
    margin-bottom: 8px;
}

/* Pestañas para grupos de edad */
.cumplearte-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--cumplearte-border);
}

.cumplearte-tab {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    padding: 12px 20px;
    cursor: pointer;
    background-color: #f0f0f0;
    border: none;
    font-size: 1.1em;
    transition: background-color 0.3s;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-right: 5px;
}

.cumplearte-tab:hover {
    background-color: #e0e0e0;
}

.cumplearte-tab.active {
    background-color: var(--cumplearte-primary);
    color: white;
}

/* Contenedores de talleres */
.cumplearte-workshops-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.cumplearte-workshop-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cumplearte-workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.cumplearte-workshop-card.selected {
    border: 3px solid var(--cumplearte-primary);
}

.cumplearte-workshop-card.selected:after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--cumplearte-primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.cumplearte-workshop-image {
    width: 100%;
    height: 180px;
    background-color: var(--cumplearte-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.5em;
    text-align: center;
    letter-spacing: -0.01em;
}

.cumplearte-workshop-content {
    padding: 20px;
}

.cumplearte-workshop-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 1.3em;
    margin-top: 0;
    color: var(--cumplearte-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.cumplearte-workshop-description {
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.cumplearte-age-badge {
    display: inline-block;
    background-color: var(--cumplearte-accent);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 900;
    margin-bottom: 15px;
}

.cumplearte-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.cumplearte-price-table th, 
.cumplearte-price-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.cumplearte-price-table th {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    background-color: var(--cumplearte-secondary);
    color: white;
}

.cumplearte-price-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.cumplearte-select-button {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    display: block;
    width: 100%;
    padding: 12px 10px;
    background-color: var(--cumplearte-primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 1.1em;
    transition: background-color 0.3s;
    letter-spacing: 0.02em;
}

.cumplearte-select-button:hover {
    background-color: #c63a27;
}

/* Sección de talleres seleccionados */
.cumplearte-selected-workshops-section {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--cumplearte-light);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cumplearte-price-summary {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--cumplearte-accent);
    border-radius: 8px;
    font-size: 1.2em;
    text-align: right;
    font-weight: 900;
}

#cumplearte-selected-workshops-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#cumplearte-selected-workshops-list li {
    background-color: white;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cumplearte-selected-workshops-list li strong {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    color: var(--cumplearte-primary);
}

.cumplearte-workshop-remove {
    background-color: #ff5252;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.cumplearte-workshop-remove:hover {
    background-color: #d32f2f;
}

.cumplearte-adicional-checkbox {
    margin-right: 10px;
}

/* Opciones adicionales */
.cumplearte-additional-options {
    margin-top: 30px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cumplearte-additional-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cumplearte-additional-title img {
    width: 50px;
    margin-right: 15px;
}

.cumplearte-additional-title h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    color: var(--cumplearte-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.cumplearte-additional-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cumplearte-additional-item {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    background-color: var(--cumplearte-light);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cumplearte-additional-item-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
}

.cumplearte-additional-item-price {
    background-color: var(--cumplearte-accent);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 900;
}

/* Estilos de formulario */
.cumplearte-form-section {
    margin-top: 40px;
    display: none;
}

.cumplearte-form-section.active {
    display: block;
}

.cumplearte-form-group {
    margin-bottom: 20px;
}

.cumplearte-form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
}

.cumplearte-form-group input,
.cumplearte-form-group textarea,
.cumplearte-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
}

.cumplearte-form-group textarea {
    height: 100px;
}

.cumplearte-submit-button {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    padding: 14px 24px;
    background-color: var(--cumplearte-primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
    letter-spacing: 0.02em;
}

.cumplearte-submit-button:hover {
    background-color: #c63a27;
}

/* Mejoras de legibilidad y contraste */
#cumplearte-app p,
#cumplearte-app li,
#cumplearte-app td,
#cumplearte-app label {
    color: #333;
    font-weight: 400;
}

#cumplearte-app strong {
    font-weight: 900;
}

#cumplearte-app h3,
#cumplearte-app h4 {
    font-weight: 900;
}

/* Asegurar que la tipografía siempre se aplique incluso con temas que puedan sobrescribirla */
.elementor-widget-container #cumplearte-app,
.elementor-widget-container #cumplearte-app *,
.site-content #cumplearte-app,
.site-content #cumplearte-app *,
.entry-content #cumplearte-app,
.entry-content #cumplearte-app * {
    font-family: 'Archivo', sans-serif;
}

.elementor-widget-container #cumplearte-app h1,
.elementor-widget-container #cumplearte-app h2,
.elementor-widget-container #cumplearte-app h3,
.elementor-widget-container #cumplearte-app h4,
.elementor-widget-container #cumplearte-app strong,
.elementor-widget-container #cumplearte-app .cumplearte-tab,
.elementor-widget-container #cumplearte-app .cumplearte-select-button,
.elementor-widget-container #cumplearte-app .cumplearte-submit-button,
.elementor-widget-container #cumplearte-app .cumplearte-workshop-title,
.elementor-widget-container #cumplearte-app .cumplearte-additional-item-name,
.site-content #cumplearte-app h1,
.site-content #cumplearte-app h2,
.site-content #cumplearte-app h3,
.site-content #cumplearte-app h4,
.site-content #cumplearte-app strong,
.site-content #cumplearte-app .cumplearte-tab,
.site-content #cumplearte-app .cumplearte-select-button,
.site-content #cumplearte-app .cumplearte-submit-button,
.site-content #cumplearte-app .cumplearte-workshop-title,
.site-content #cumplearte-app .cumplearte-additional-item-name,
.entry-content #cumplearte-app h1,
.entry-content #cumplearte-app h2,
.entry-content #cumplearte-app h3,
.entry-content #cumplearte-app h4,
.entry-content #cumplearte-app strong,
.entry-content #cumplearte-app .cumplearte-tab,
.entry-content #cumplearte-app .cumplearte-select-button,
.entry-content #cumplearte-app .cumplearte-submit-button,
.entry-content #cumplearte-app .cumplearte-workshop-title,
.entry-content #cumplearte-app .cumplearte-additional-item-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cumplearte-flex-container {
        flex-direction: column;
    }
    
    .cumplearte-workshop-card {
        min-width: 100%;
    }
    
    .cumplearte-tab {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .cumplearte-additional-items {
        flex-direction: column;
    }
    
    .cumplearte-additional-item {
        min-width: 100%;
    }
    
    #cumplearte-selected-workshops-list li {
        flex-direction: column;
        text-align: center;
    }
    
    #cumplearte-selected-workshops-list li > div:last-child {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .cumplearte-title {
        font-size: 1.8em;
    }
    
    .cumplearte-section-title {
        font-size: 1.5em;
    }
    
    .cumplearte-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .cumplearte-tab {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 5px;
    }
    
    .cumplearte-workshop-image {
        height: 150px;
    }
    
    .cumplearte-price-table {
        font-size: 0.8em;
    }
    
    .cumplearte-workshop-title {
        font-size: 1.2em;
    }
}

/* Compatibilidad con temas de WordPress */
.site-content .cumplearte-workshop-card,
.entry-content .cumplearte-workshop-card,
.elementor-widget-container .cumplearte-workshop-card,
.elementor-element .cumplearte-workshop-card {
    margin: 0;
}

.site-content .cumplearte-price-table,
.entry-content .cumplearte-price-table,
.elementor-widget-container .cumplearte-price-table,
.elementor-element .cumplearte-price-table {
    margin-bottom: 15px;
    width: 100%;
}

.site-content .cumplearte-select-button,
.entry-content .cumplearte-select-button,
.elementor-widget-container .cumplearte-select-button,
.elementor-element .cumplearte-select-button {
    text-decoration: none;
}

/* Evitar conflictos con otros plugins o temas */
#cumplearte-app .cumplearte-tab {
    float: none;
}

#cumplearte-app .cumplearte-workshop-card {
    float: none;
    display: flex;
    flex-direction: column;
}

#cumplearte-app .cumplearte-workshop-content {
    height: auto;
}

#cumplearte-app .cumplearte-select-button {
    line-height: 1.6;
}

#cumplearte-app img {
    max-width: 100%;
    height: auto;
}

/* Soporte para Elementor específicamente */
.elementor-widget-container #cumplearte-app {
    width: 100%;
}

.elementor-widget-container .cumplearte-flex-container {
    display: flex;
}

.elementor-widget-container .cumplearte-workshop-card {
    display: flex;
    flex-direction: column;
}

.elementor-widget-container .cumplearte-workshop-content {
    flex: 1;
}/* End custom CSS */