/*
Theme Name:   	Website Dinner in the Sky 2026
Theme URI:	 	https://ifastweb.design/
Description: 	Diseño web para Dinner in the Sky Mexico by ifastweb.design
Author:       	Erik Reyes
Author URL:		https://erikreyes.com/
Template:     	hello-elementor
Version:      	1
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Tags:			ifastweb, orbital, one-column, two-columns, right-sidebar, flexible-header, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
Text Domain:  	hello-elementor-child
*/

/* --- DITS SUCCESS CARD (Feedback de Formulario) --- */
.dits-success-card {
    text-align: center;
    padding: 30px 20px;
    animation: fadeIn 0.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 250px; /* Altura mínima para que se vea bien */
}

/* Círculo animado del Check */
.dits-success-icon {
    width: 60px;
    height: 60px;
    background: #10b981; /* Verde Emerald */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transform: scale(0);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards;
}

.dits-success-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}

.dits-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1B358A; /* Azul DITS */
    margin-bottom: 10px;
    line-height: 1.2;
}

.dits-success-msg {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #64748b;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Ocultar el mensaje feo por defecto de CF7 */
.wpcf7-response-output {
    display: none !important;
}

@keyframes popIn { to { transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }