/* assets/style.css */

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

body {
    font-family: 'Arial', sans-serif;
    background: #1a0a2e;
    color: #fff;
    min-height: 100vh;
}

/* ── LOGO ONLY (invalid/missing region) ── */
.logo-only {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(160deg, #1a0a2e 0%, #3d0a4f 50%, #1a0a2e 100%);
}

.logo-only__img {
    max-width: 1200px;
    width: 60%;
}

/* ── HERO ── */
.hero {
    position: relative;
    background: linear-gradient(160deg, #1a0a2e 0%, #3d0a4f 50%, #1a0a2e 100%);
    padding: 40px 20px 80px;
    text-align: center;
    overflow: hidden;
}

/* Star/sparkle effect via pseudo-element */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,220,80,0.9) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255,220,80,0.6) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.4) 0.8px, transparent 0.8px);
    background-size: 130px 130px, 90px 90px, 70px 70px, 50px 50px;
    background-position: 15px 25px, 45px 65px, 75px 15px, 30px 50px;
    pointer-events: none;
}

.hero__logo {
    width: 1000px;
    position: relative;
    z-index: 1;
    margin-bottom: -47px;
}

.hero__title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.88;
    font-style: italic;
    font-weight: 900;
    color: #f5c800;
    text-shadow: 3px 3px 0 #c98a00, 0 0 40px rgba(245,200,0,0.35);
    letter-spacing: -1px;
}

.hero__title-line1 {
    font-size: clamp(52px, 13vw, 120px);
    display: flex;
    gap: 0.15em;
    align-items: baseline;
}

.hero__title-a {
    font-size: 0.55em;
}

.hero__title-line2 {
    font-size: clamp(28px, 7vw, 64px);
    align-self: flex-start;
    margin-left: 0.5em;
    color: #fff;
    text-shadow: 1px 1px 0 #999, 0 0 20px rgba(255,255,255,0.2);
}

.hero__title-line3 {
    font-size: clamp(64px, 16vw, 150px);
}

.hero__title-dot {
    color: #fff;
    font-style: normal;
}

/* ── CONTENT ── */
.content {
    background: linear-gradient(180deg, #c2185b 0%, #ad1457 100%);
    padding: 48px 20px 60px;
}

.content__inner {
    max-width: 680px;
    margin: 0 auto;
}

.content__inner p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
    color: #fff;
}

.content__aviso {
    margin-bottom: 32px !important;
}

/* ── FORM ── */
.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form__row {
    display: flex;
    gap: 12px;
}

.form__row--two {
    flex-wrap: wrap;
}

.form__row--two > * {
    flex: 1 1 200px;
    min-width: 0;
}

.form__input,
.form__select {
    width: 100%;
    
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.form__input::placeholder {
    color: #666;
}

.form__input:focus,
.form__select:focus {
    border-color: rgba(255,255,255,0.8);
    background: #fff;
}
.form__input--full {
    width: 100%;
}

.form__input--locked {
    cursor: not-allowed;
    opacity: 1;
    background: #fff;
}


.form__select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: rgba(255,255,255,0.12);
    padding-right: 36px;
}

.form__select option {
    background: #ad1457;
    color: #fff;
}

.form__row--checkbox {
    align-items: flex-start;
    margin-top: 4px;
}

.form__checkbox-label {
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form__checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    accent-color: #f5c800;
    cursor: pointer;
}

.form__submit {
    background: #fff;
    color: #49094f;
    border: none;
    border-radius: 4px;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    align-self: flex-start;
    text-transform:uppercase;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.form__submit:hover {
    background: #570855;
    color: #fff;
}
.form__submit:active {
    transform: scale(0.98);
}

.form__privacy {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    margin-top: 4px !important;
}

.form__privacy a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}

.form__privacy a:hover {
    color: #fff;
}

/* ── FEEDBACK STATES ── */
.form-success {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 6px;
    padding: 28px 24px;
    text-align: center;
    font-size: 16px;
    line-height: 1.65;
}

.form-success p + p {
    margin-top: 8px;
    opacity: 0.85;
    font-size: 14px;
}

.form-error {
    background: rgba(180,0,0,0.3);
    border: 1px solid rgba(255,120,120,0.5);
    border-radius: 5px;
    padding: 11px 15px;
    font-size: 14px;
    line-height: 1.5;
}

/* ── IMAGE RIGHTS SECTION ── */
.form__section {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__section-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 !important;
}

.form__section-text {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
    margin: 0 !important;
}

.form__radio-group {
    display: flex;
    gap: 24px;
}

.form__radio-label {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form__radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #f5c800;
    cursor: pointer;
    flex-shrink: 0;
}

/* ── RGPD ── */
.form__rgpd {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 14px;
    margin-top: 4px !important;
}


@media (max-width: 759px) {

    .hero__logo{
        width: 100%;
    }
    .content__inner {
        text-align: justify;
        padding:10px;
    }
    .form__row--two > *
 {
    flex: 1 1 50px;
    min-width: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 520px) {
    .hero {
        padding: 32px 16px 60px;
    }

    .content {
        padding: 36px 16px 48px;
    }

    .form__row--two {
        flex-direction: column;
    }

    .form__submit {
        align-self: stretch;
        text-align: center;
    }
}
