:root {
    /* Variables de color */
    --color-principal: #FF0054;
    --color-secundario: #343454;
    --color-acento: #e91e63;
    --color-hover: #c2185b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: "Manrope", sans-serif;
    background: linear-gradient(135deg, #e8d5f5 0%, #f4e4a6 50%, #d4a574 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
} */

body {
    font-family: "Manrope", sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #6b5dc0, #f4e4a6, #d4a574);
    background-size: 200% 200%;
    animation: baseMove 6s ease-in-out infinite;
    /* overflow: hidden; */
    position: relative;
}

.pulse-layer {
    position: fixed;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(139, 123, 216, 0.5) 0%,
            rgba(244, 228, 166, 0.3) 40%,
            rgba(212, 165, 116, 0.4) 70%,
            transparent 100%);
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

@keyframes baseMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 15px 120px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ty-container {
    background-color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 15px 120px;
    /* max-width: 1200px; */
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    /* margin-bottom: 40px; */
}

.logo-image {
    height: 100px;
    width: auto;
}

.main-title {
    font-family: "Zilla Slab", serif;
    text-align: center;
    margin-bottom: 10px;
    color: var(--color-secundario);
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
}

.lightning {
    color: #f7931e;
    font-size: 28px;
}

.subtitle {
    font-family: "Zilla Slab", serif;
    text-align: center;
    color: var(--color-secundario);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 500px;
}

.form-container {
    background: white;
    padding: 40px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    /* min-height: 300px; */
}

.step-title {
    text-align: center;
    color: var(--color-secundario);
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
    padding: 0 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    font-size: 16px;
    color: var(--color-secundario);
    background: white;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-acento);
}

.form-control::placeholder {
    color: #999;
}

.select-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.checkbox-group {
    margin: 20px 0;
    padding: 0 20px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.checkbox {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-acento);
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    padding-left: 20px;
}

.button-group {
    display: flex;
    margin-top: 30px;
}

.btn {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 0 !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 8px; */
}

.btn-primary {
    background: var(--color-principal);
    color: white;
}

.btn-primary:hover {
    background: var(--color-hover);
    /* transform: translateY(-1px); */
}

.btn-secondary {
    background: var(--color-principal);
    color: white;
    /* flex: 0 0 auto; */
    padding: 15px 20px;
}

.btn-secondary:hover {
    background: var(--color-hover);
}

.align-start {
    justify-content: start;
}

.align-center {
    justify-content: center;
}

.align-end {
    justify-content: end;
}

.privacy-notice {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer {
    background: var(--color-secundario);
    color: #ffffff;
    padding: 10px 20px 30px;
    font-size: 13px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #bdc3c7;
}

.footer-logo-container {
    display: flex;
    justify-content: end;
}

.footer-left {
    align-items: flex-end;
}

.footer-left img {
    height: 50px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.footer-descuentate {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

.hidden-xs {
    display: none !important;
}

.cta-button {
    background: var(--color-acento);
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cta-button:hover {
    background: var(--color-hover);
}

.final-message {
    color: #666;
    font-size: 14px;
}

/* Cookie Consent Banner */

.freeprivacypolicy-com---palette-light .cc-nb-okagree {
    color: #fff;
    background-color: var(--color-principal) !important;
}

.freeprivacypolicy-com---palette-light .cc-nb-reject {
    color: #fff;
    background-color: var(--color-principal) !important;
}

.freeprivacypolicy-com---palette-light .cc-cp-foot-save {
    background: var(--color-principal) !important;
    color: #fff;
}

.freeprivacypolicy-com---palette-light .cc-cp-body-tabs-item-link:focus span{
    box-shadow: inset 3px 0 0 0 var(--color-principal)!important;
}

.freeprivacypolicy-com---palette-light .cc-pc-head-close:active, .freeprivacypolicy-com---palette-light .cc-pc-head-close:focus {
    border: 2px solid var(--color-principal)!important;
}

/* Responsive */
@media (max-width: 768px) {

    .hidden-xs {
        display: flex !important;
    }

    .logo-image {
        height: auto;
        width: 260px;
    }

    .form-container {
        padding: 30px 0px 0;
    }

    .main-title {
        font-size: 24px;
    }

    .logo-text {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-descuentate {
        justify-content: end;
    }

    .footer-logo-container {
        width: 100%;
        justify-content: space-between;
    }

    .step-title {
        font-size: 16px;
        padding: 0 20px;
    }
}


/* ===============================
    MODAL PROTECCIÓN DE DATOS
   =============================== */

:root {
    --gdpr-link: var(--color-acento);
}
