/* ======================================================
   ROOT VARIABLES (MATCH FLYER)
====================================================== */
:root {
    --cream-bg: #fff6e6;
    --soft-cream: #fffaf2;
    --accent-red: #e94b4b;
    --accent-orange: #d89a5a;
    --dark-text: #2a2a2a;

    --font-zalando: 'Zalando Sans Expanded', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
}

/* ======================================================
   GLOBAL
====================================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Marble cream background */
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0.05)),
        linear-gradient(180deg, #fffaf2 0%, #fff3dd 100%);

    color: var(--dark-text);
    min-height: 100vh;
}

/* ======================================================
   MAIN CARD
====================================================== */
.container {
    max-width: 1100px;
    margin: 28px auto;
    padding: 28px;

    background: var(--soft-cream);
    border-radius: 26px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);

    text-align: center;
}

/* ======================================================
   IMAGE
====================================================== */
img {
    max-width: 360px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 18px;
}

/* ======================================================
   TOP HEADER (AVISO IMPORTANTE)
====================================================== */
.top-header {
    padding: 20px;
    margin-bottom: 24px;
}

.top-header h2 {
    font-family: var(--font-zalando);
    font-size: 3rem;
    letter-spacing: 3px;
    color: var(--accent-red);
    text-transform: uppercase;
}

/* ======================================================
   ORANGE NOTICE STRIP
====================================================== */
.countdown-section {
    background: linear-gradient(180deg,
            rgba(216, 154, 90, 0.9),
            rgba(216, 154, 90, 0.9));

    padding: 30px 22px;
    margin-bottom: 28px;
    color: #fff;

    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.countdown-section h3 {
    font-family: var(--font-zalando);
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
    color: #fff;
}

/* ======================================================
   COUNTDOWN BLOCKS
====================================================== */
.countdown-item {
    background: #fff;
    color: var(--accent-red);
    border-radius: 16px;
    /* border-bottom: #000000 2px solid;
    border-right: #000000 2px solid; */
    padding: 14px 16px;
    margin: 0 10px;
    /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18); */
}

.countdown-item span {
    font-family: var(--font-zalando);
    font-size: 1.4rem;
    font-weight: 800;
}

/* ======================================================
   SMS FORM (COMPLIANT)
====================================================== */
#sign-up-form {
    margin-top: 22px;
    text-align: left;
}

#sign-up-form .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
}

#sign-up-form input[type="text"] {
    border-radius: 10px;
    padding: 10px 12px;
}

#sign-up-form .form-check-label {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #000000;
    margin-left: 6px;
}

.sms-disclaimer {
    margin-top: 10px;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #000000;
}

/* CTA */
#sign-up-form button {
    width: 100%;
    margin-top: 14px;
    border-radius: 14px;
    background: var(--accent-red);
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ======================================================
   ABOUT US
====================================================== */
.about-us {
    margin-top: 36px;
    padding: 30px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.about-us h3 {
    font-family: var(--font-zalando);
    font-size: 2.3rem;
    color: var(--accent-red);
}

.about-us p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ======================================================
   MAP
====================================================== */
.map-container iframe {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

/* ======================================================
   FLOATING SIGNUP BUTTON
====================================================== */
.signup-toggle {
    position: fixed;
    opacity: 0;
}

.signup-fab {
    position: fixed;
    right: 20px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-red);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 32px rgba(233, 75, 75, 0.45);
    cursor: pointer;
    z-index: 1001;
}

.signup-popup {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: min(360px, 92vw);
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 200ms ease;
}

.signup-toggle:checked~.signup-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ======================================================
   FOOTER
====================================================== */
footer {
    margin-top: 36px;
    padding: 20px;
    font-size: 0.85rem;
    color: var(--accent-red);
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width: 768px) {
    .about-us {
        grid-template-columns: 1fr;
    }

    .top-header h2 {
        font-size: 2.2rem;
    }

    .countdown-section h3 {
        font-size: 2.2rem;
    }
}

/* =========================================
   SIGNUP POPUP – AVISO IMPORTANTE THEME
========================================= */

/* Hide raw checkbox */
.signup-toggle {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

/* Floating heart button */
.signup-fab {
    position: fixed;
    right: 20px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;

    background: linear-gradient(135deg, #e94b4b, #c62828);
    color: #ffffff;

    display: grid;
    place-items: center;
    font-size: 1.4rem;

    box-shadow: 0 16px 34px rgba(233, 75, 75, 0.45);
    cursor: pointer;
    z-index: 1001;

    transition: transform 180ms ease, box-shadow 180ms ease;
}

.signup-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 22px 44px rgba(233, 75, 75, 0.6);
}

/* Popup shell */
.signup-popup {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: min(360px, 92vw);

    background: #ffffff;
    border-radius: 26px;
    padding: 22px;

    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(0, 0, 0, 0.06);

    opacity: 0;
    pointer-events: none;
    transform: translateY(24px) scale(0.98);

    transition: all 220ms ease;
    z-index: 1000;
}

/* Show popup */
.signup-toggle:checked~.signup-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Close button */
.signup-close {
    position: absolute;
    top: -12px;
    right: -12px;

    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: #e94b4b;
    color: #ffffff;

    display: grid;
    place-items: center;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

/* Inner form container */
.sign-up-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

/* Title */
.sign-up-form h3 {
    font-family: var(--font-zalando);
    font-size: 1.6rem;
    color: #e94b4b;
    letter-spacing: 1px;
}

/* Input */
.sign-up-form .form-control {
    border-radius: 12px;
    padding: 10px 12px;
}

/* Consent label */
.sign-up-form .form-check-label {
    font-size: 0.75rem;
    overflow: wrap;
    line-height: 1.4;
    color: #000000;
}

/* Submit button */
.sign-up-form button {
    width: 100%;
    border-radius: 14px;
    background: #e94b4b;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =========================================
   MOBILE ADJUSTMENTS
========================================= */
@media (max-width: 600px) {
    .signup-popup {
        right: 12px;
        bottom: 86px;
    }

    .signup-fab {
        right: 14px;
        bottom: 14px;
    }


}

@media (max-width: 490px) {
    #countdown-display {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        justify-items: center;
    }

    .countdown-item {
        margin: 0;
        width: 100%;
    }
}
