    * {
        box-sizing: border-box;
    }

    .d-none {
        display: none;
    }

    .d-block {
        display: block;
    }

    .d-flex {
        display: flex;
    }

    body {
        font-family: "Raleway", sans-serif !important;
        font-optical-sizing: auto;
        font-weight: 600 !important;
        font-style: normal;
        background-color: #f5f5f5;
        margin: 0;
        padding: 20px;
        color: #787878;
    }

    h2 {
        font-weight: 600 !important;
        font-size: 30px !important;
        color: #000a14 !important;
        letter-spacing: 2px;
    }

    .container {
        max-width: 800px;
        margin: 0 auto;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .title-header {
        background-color: #dc3545;
        color: white;
        padding: 20px 30px;
        margin: 0;
        display: flex;
        justify-content: center;
        /* Centra horizontalmente */
        with: 100%;
    }

    .title-header img {
        margin: 0 auto;
        max-width: 154;
        height: auto;
    }

    .title-header h1 {
        margin: 0;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
    }

    .title-bajada {
        background-color: #fff;
        color: #004080;
        padding: 20px 30px;
        margin: 0;
    }

    .title-bajada h1 {
        margin: 0;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }

    .form-complete {
        padding: 30px;
        padding-top: 0px;
    }

    .pb-0 {
        padding-bottom: 0px;
    }

    #form-response {
        text-align: center;
        margin-bottom: 20px;
    }

    .form-group {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .input-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: end;
    }

    .input-row>div {
        display: flex;
        flex-direction: column;
    }

    .resultado {
        display: grid;
        gap: 5px;
        grid-template-columns: 10% 80%;
    }

    .resultado div {
        margin-top: 10px;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #333;
        font-size: 14px;
    }

    input[type="text"],
    input[type="email"],
    input[type="email"],
    select {
        width: 100% !important; 
        padding: 12px !important;
        border: 2px solid #ddd !important;
        border-radius: 5px !important;
        font-size: 16px;
        transition: border-color 0.3s ease !important;
        height: 48px;
        /* Altura fija para todos los inputs */
        background-color: white;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    select:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

    .info-text {
        margin-bottom: 15px;
        color: #555;
        font-size: 14px;
        line-height: 1.4;
    }

    .section-title {
        display: block;
        font-weight: bold;
        margin-bottom: 15px;
        color: #333;
        font-size: 14px;
    }

    .g-recaptcha {
        margin: 20px 0;
    }

    .btn-submit-form {
        background-color: #004080 !important;
        color: white !important;
        width: 100% !important;
        padding: 12px 30px !important;
        border: none !important;
        border-radius: 5px !important;
        font-size: 16px !important;
        cursor: pointer !important;
        transition: background-color 0.3s ease !important;
        margin-top: 12px;
    }

    .btn-submit-form:hover {
        background-color: #02386e;
    }

    .logo-text-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        background-color: #ffffff;
        border-bottom: 1px solid #ddd;
    }

    .text-content {
        flex: 1;
        color: #333;
    }

    .logo-content {
        flex-shrink: 0;
    }

    .logo-img {
        height: 60px;
        width: auto;
    }

    .msg-success {
        background: #e8f7ee;
        color: #145a32;
        border: 1px solid #c8ead6;
    }

    .msg-danger {
        background: #f8d7da;
        color: #97585e;
        border: 1px solid #c8ead6;
        text-align: center;
    }

    .msg {
        border-radius: 8px;
        padding: 12px 14px;
        margin: 12px 0;
        line-height: 1.4;
    }

    .span-telefono {
        display: flex;
    }

    .span-telefono input {
        border-left: 0px solid #ddd;
        border-radius: 0px 5px 5px 0px;
    }

    .span-569 {
        align-items: center;
        background-color: #f8f9fa;
        color: var(--bs-body-color);
        display: flex;
        padding: .375rem .75rem;
        border: 2px #dddddd solid;
        border-radius: 5px 0px 0px 5px;
    }


    /* Responsive */
    @media (max-width: 768px) {
        .logo-text-container {
            flex-direction: column;
            text-align: center;
        }

        .logo-content {
            margin-top: 15px;
            text-align: center;
        }
    }


    /* Responsive design */
    @media (max-width: 768px) {
        .input-row {
            grid-template-columns: 1fr;
        }
    }

    .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid rgba(0, 0, 0, 0.1);
        border-top-color: #3498db;
        /* Color del spinner */
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 20px auto;
        /* Centrado horizontal */
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .elementor-top-section {
        display: none !important;
    }