.elementor-3655 .elementor-element.elementor-element-9eb7212{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-14dbc40 *//* --- CONFIGURACIÓN GENERAL RESPONSIVE --- */

/* Contenedor Principal */
.ty-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem; /* Menos relleno en móvil */
    font-family: 'Roboto', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

/* En PC aumentamos el espacio vertical */
@media (min-width: 768px) {
    .ty-wrapper { padding: 4rem 1rem; }
}

.ty-container {
    max-width: 672px;
    width: 100%;
    text-align: center;
}

/* Animación Icono */
.ty-icon-area {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.ty-pulse-circle {
    width: 6rem; /* Más pequeño en móvil */
    height: 6rem;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.ty-inner-circle {
    width: 4.5rem; /* Más pequeño en móvil */
    height: 4.5rem;
    border-radius: 50%;
    background-color: rgba(0, 188, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
}

@media (min-width: 768px) {
    .ty-pulse-circle { width: 8rem; height: 8rem; }
    .ty-inner-circle { width: 6rem; height: 6rem; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Tipografía Adaptable */
.ty-title {
    font-size: 2rem; /* Texto más chico en móvil para que no se corte */
    line-height: 1.2;
    font-weight: 300;
    color: #1a3a4a;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .ty-title { font-size: 3rem; line-height: 1; }
}

.ty-title span {
    display: block;
    color: #00bcd4;
    font-weight: 600;
}

.ty-message {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .ty-message { font-size: 1.125rem; line-height: 1.75rem; }
}

.ty-message span {
    color: #00bcd4;
    font-weight: 500;
}

/* Tarjeta de Información */
.ty-card {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem; /* Menos padding interno en móvil */
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .ty-card { padding: 2rem; margin-bottom: 2.5rem; }
}

.ty-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a3a4a;
    margin-bottom: 1rem;
    text-align: center;
}

.ty-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.ty-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ty-step-number {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #00bcd4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px; /* Alineación óptica con el texto */
}

.ty-step-item p {
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.ty-step-item strong {
    color: #1a3a4a;
}

/* --- BOTONES RESPONSIVE Y ESTILIZADOS --- */
.ty-actions {
    display: flex;
    flex-direction: column; /* Apilados en móvil */
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    width: 100%;
}

@media (min-width: 640px) {
    .ty-actions { 
        flex-direction: row; /* Uno al lado del otro en tablet/PC */
        width: auto;
    }
}

.ty-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: all 0.3s ease;
    width: 100%; /* Ancho completo en móvil para tocar fácil */
}

@media (min-width: 640px) {
    .ty-btn { width: auto; } /* Ancho automático en PC */
}

.ty-btn svg {
    width: 20px !important;
    height: 20px !important;
    display: block;
    margin: 0 !important;
    stroke-width: 2px;
}

/* Botón Primario */
.ty-btn-primary {
    background-color: #00bcd4 !important;
    color: #ffffff !important;
}
.ty-btn-primary:hover {
    background-color: #00a5bb !important;
    transform: translateY(-2px);
}

/* Botón Secundario */
.ty-btn-secondary {
    background-color: #1a3a4a !important;
    color: #ffffff !important;
}
.ty-btn-secondary:hover {
    background-color: #152e3b !important;
    transform: translateY(-2px);
}

/* Footer de Contacto */
.ty-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.ty-footer-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.ty-contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .ty-contact-links { 
        flex-direction: row; 
        justify-content: center;
        gap: 1.5rem;
    }
}

.ty-contact-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a3a4a;
    text-decoration: none;
    padding: 0.5rem; /* Área de toque mejorada */
}

.ty-contact-links a:hover {
    color: #00bcd4;
}

.ty-contact-links span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-align: center;
}/* End custom CSS */