.elementor-127 .elementor-element.elementor-element-378ea0b{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}.elementor-127 .elementor-element.elementor-element-378ea0b:not(.elementor-motion-effects-element-type-background), .elementor-127 .elementor-element.elementor-element-378ea0b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-070449c );}.elementor-127 .elementor-element.elementor-element-08a571b{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}body.elementor-page-127:not(.elementor-motion-effects-element-type-background), body.elementor-page-127 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-070449c );}/* Start custom CSS for html, class: .elementor-element-08a571b */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

/* Luego el resto de tu código... */
.thanks-body {
    font-family: 'Montserrat', sans-serif !important;
}
/* --- ESTILO PÁGINA DE GRACIAS --- */
.thanks-body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #002147; /* Azul corporativo */
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    animation: fadeIn 0.8s ease-in-out;
}

.thanks-logo {
    width: 80px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1); /* Logo en blanco */
}

.thanks-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin: 0 0 20px 0;
    color: #fff;
}

.thanks-divider {
    width: 80px;
    height: 2px;
    background-color: #ffffff;
    margin: 0 auto 30px auto;
}

.thanks-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ffffff;
}

.btn-back-home {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background-color: #ffffff;
    color: #002147;
}

/* Animación de entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ajuste Móvil */
@media (max-width: 768px) {
    .thanks-title { font-size: 1.8rem; }
    .thanks-text { font-size: 1rem; padding: 0 20px; }
}/* End custom CSS */