<!-- start Simple Custom CSS and JS -->
<style type="text/css">

/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

body #my-cf-73b4598 {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f9fc; /* Un fondo gris muy suave para resaltar el formulario */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

/* --- ESTILOS DEL FORMULARIO (CSS PRO - SCOPED) --- */

/* Contenedor Principal: Simula la tarjeta blanca de la web */
/* Aplicado específicamente al ID del formulario */
#my-cf-73b4598 {
    margin-right: auto;
    margin-left: auto;
    background-color: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Sombra sutil y elegante */
    border: 1px solid rgba(0,0,0,0.02);
}

/* CORRECCIÓN: Eliminar borde del fieldset (la raya misteriosa) */
#my-cf-73b4598 fieldset {
    border: none;
    padding: 0;
    margin: 0;
    min-width: 0; /* Fix para algunos navegadores */
}

/* Ocultar elementos de respuesta de lector de pantalla para que no ocupen espacio */
#my-cf-73b4598 .screen-reader-response {
    display: none;
}

/* Estructura de párrafos */
#my-cf-73b4598 p {
    margin-bottom: 20px;
    position: relative;
}

/* Estilos de las Etiquetas (Labels) */
#my-cf-73b4598 label {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748; /* Gris oscuro profesional */
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Inputs (Texto, Email, Tel) */
#my-cf-73b4598 input[type="text"],
#my-cf-73b4598 input[type="email"],
#my-cf-73b4598 input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a5568;
    background-color: #ffffff;
    border: 1px solid #e2e8f0; /* Borde gris suave */
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Crucial para que no se salga del contenedor */
    outline: none;
}

/* Efectos al hacer click en los inputs (Focus) */
#my-cf-73b4598 input[type="text"]:focus,
#my-cf-73b4598 input[type="email"]:focus,
#my-cf-73b4598 input[type="tel"]:focus {
    border-color: #d53f8c; /* Rosa de la marca */
    box-shadow: 0 0 0 3px rgba(213, 63, 140, 0.1); /* Resplandor suave rosa */
}

/* Checkboxes y textos legales */
#my-cf-73b4598 .wpcf7-list-item {
    display: block;
    margin: 10px 0;
}

#my-cf-73b4598 .wpcf7-list-item label {
    display: flex; /* Flexbox para alinear checkbox y texto */
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400; /* Letra normal para el texto legal */
}

#my-cf-73b4598 .wpcf7-list-item input[type="checkbox"] {
    margin-top: 4px; /* Alineación óptica con la primera línea de texto */
    margin-right: 12px;
    min-width: 16px;
    min-height: 16px;
    accent-color: #d53f8c; /* Colorea el checkbox nativo con el color de la marca */
    cursor: pointer;
}

#my-cf-73b4598 .wpcf7-list-item-label {
    font-size: 11px; /* Letra pequeña para legales */
    line-height: 1.5;
    color: #718096; /* Gris medio para no saturar */
    display: block;
}

/* Botón de Enviar (Submit) */
#my-cf-73b4598 input[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    /* Gradiente estilo "Smile Design Miami" */
    background: linear-gradient(90deg, #d53f8c 0%, #9f7aea 100%); 
    border: none;
    border-radius: 50px; /* Botón tipo píldora */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

#my-cf-73b4598 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(213, 63, 140, 0.3);
    /* Invertir ligeramente el gradiente o brillo */
    filter: brightness(1.05);
}

#my-cf-73b4598 input[type="submit"]:active {
    transform: translateY(0);
}

/* Spinner de carga (oculto por defecto o estilizado) */
#my-cf-73b4598 .wpcf7-spinner {
    display: none; 
}

/* Control wrap: Asegura que el span que envuelve al input ocupe el ancho */
#my-cf-73b4598 .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Responsive */
@media (max-width: 480px) {
    #my-cf-73b4598 {
        padding: 20px;
    }
}</style>
<!-- end Simple Custom CSS and JS -->
