/*************************** GLOBAL STYLES ***************************/
:root {
    --white: #ffffff;
    --black: #000000;
    --pink-accent: #e91e8c;
    --dark-purple: #1d0211;
    --medium-purple: #3d1430;
    --golden: #d4a574;
    --dark-golden: #a87e4d;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "archivo", sans-serif;
    background-color: #1c0211;
    /* background-image: url(../images/bg-website.png); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/*************************** HERO SECTION ***************************/
.hero-section {
    padding: 40px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Light effect - top left */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 900px;
    height: 900px;
    background-image: url(../images/light-ellipse-pink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}

.logo-top {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.logo-top img {
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    margin-top: 8px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-family: "argent-cf", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--pink-accent);
    text-shadow: 5px 2px 8px #200213;
}

.white-text {
    color: var(--white);
    display: block;
}

.badge-free {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 1px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 2.3rem;
    border: solid 2px var(--pink-accent);
    position: relative;
    top: -4px;
}

@media (max-width: 768px) {
    .badge-free {
        font-size: 2.2rem;
        top: 0px;
    }
}

.hero-description {
    font-size: 1.65rem;
    line-height: 1.35;
    color: var(--white);
    opacity: 0.95;
    font-weight: 300;
}

.hero-description strong {
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(to top, #966d3d, #ffddb1);
    color: var(--dark-purple);
    padding: 24px 72px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 120%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/*************************** STATES SECTION ***************************/
.states-section {
    padding: 40px 0 100px;
    text-align: center;
    position: relative;
    overflow-x: clip;
}

/* Light effect - top right */
.states-section::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -2%;
    width: 900px;
    height: 900px;
    background-image: url(../images/light-ellipse-pink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.section-title {
    font-family: "argent-cf", sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--pink-accent);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-family: "argent-cf", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    border: solid 2px #fff;
    padding: 10px 20px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 1rem;
    border-radius: 100px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

/* .state-btn {
    background: linear-gradient(135deg, rgba(61, 20, 48, 0.8), rgba(29, 2, 17, 0.8));
    border: 2px solid rgb(233 30 140 / 58%);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
} */

.state-btn {
    background: linear-gradient(179deg, #a20d61, #3b0623);
    border: 2px solid rgb(233 30 140 / 58%);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.state-btn:hover {
    border-color: var(--pink-accent);
    background: #1c0211;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
}

.not-found-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.not-found-text {
    font-size: 1.4rem;
    color: var(--pink-accent);
    margin-bottom: 25px;
    font-weight: 600;
}

.btn-contact {
    padding: 14px 40px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    background: linear-gradient(to top, #966d3d, #ffddb1);
    color: var(--dark-purple);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

/*************************** MODAL ***************************/
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(61, 20, 48, 0.95), rgba(29, 2, 17, 0.95));
    border: 2px solid rgba(233, 30, 140, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-title {
    font-family: "archivo", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-regions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.region-btn {
    background: linear-gradient(to top, #966d3d, #ffddb1);
    color: var(--dark-purple);
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    border: 2px solid #b58a5d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.region-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 165, 116, 0.4);
}

/*************************** RULES MODAL ***************************/
.modal-rules {
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
}

.rules-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 2rem;
    text-align: center;
}

/* Custom Scrollbar */
.rules-content::-webkit-scrollbar {
    width: 10px;
}

.rules-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.rules-content::-webkit-scrollbar-thumb {
    background: var(--pink-accent);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.rules-content::-webkit-scrollbar-thumb:hover {
    background: #ff1a9a;
}

/* Firefox Scrollbar */
.rules-content {
    scrollbar-width: thin;
    scrollbar-color: var(--pink-accent) rgba(0, 0, 0, 0.3);
}

.rules-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
    opacity: 0.9;
}

.rules-content p:last-child {
    margin-bottom: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.region-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pink-accent);
    border: solid 2px var(--pink-accent);
    padding: 2px 16px;
    border-radius: 100px;
    letter-spacing: -0.01em;
}

/*************************** FOOTER ***************************/
footer {
    padding: 30px 20px;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/*************************** RESPONSIVE ***************************/
@media (max-width: 968px) {
    /* Adjust light effects for tablet */
    .hero-section::before {
        width: 400px;
        height: 400px;
        top: -10%;
        left: -20%;
    }
    
    .states-section::before {
        width: 450px;
        height: 450px;
        top: -20%;
        right: -20%;
    }
    
    .logo-top img {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.4rem;
    }

    .btn-primary {
        align-self: center;
        font-size: 1.4rem;
        padding: 20px 60px;
    }

    .hero-image img {
        max-width: 130%;
        position: relative;
        left: -30%;
        margin-bottom: -30px;
    }

    .states-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-title,
    .section-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    /* Adjust light effects for mobile */
    .hero-section::before {
        width: 300px;
        height: 300px;
        top: -105%;
        left: -25%;
        opacity: 0.3;
    }

    footer {
        position: relative;
        z-index: 2;
    }

    footer::before {
        filter: brightness(1) contrast(1);
        content: '';
        position: absolute;
        top: -340%;
        left: -42%;
        width: 400px;
        height: 400px;
        background-image: url(../images/light-ellipse-pink.svg);
        background-size: contain;
        background-repeat: no-repeat;
        opacity: .5;
        pointer-events: none;
        z-index: 0;
    }
    
    .states-section::before {
        width: 550px;
        height: 550px;
        top: -46%;
        right: -25%;
        opacity: 1;
        filter: brightness(1) contrast(3);
    }
    
    .logo-top img {
        max-width: 300px;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-section {
        padding: 30px 0 50px;
        overflow: hidden;
    }

    .logo-top {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
        max-width: 100%;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .btn-primary {
        font-size: 1.2rem;
        padding: 16px 48px;
    }

    .states-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .not-found-text {
        font-size: 1.4rem;
        color: var(--pink-accent);
        margin-bottom: 25px;
        font-weight: 600;
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 1rem;
    }

}

@media (max-width: 768px) {
    .hero-image.mobile {
        display: block;
    }
    .hero-image.desktop {
        display: none;
    }
}

@media (min-width: 769px) {
    .hero-image.mobile {
        display: none;
    }
    .hero-image.desktop {
        display: block;
    }
    
}

.rules-content .highlight-pink {
    color: var(--pink-accent) !important;
    text-align: center;
    font-weight: 600;
    background: #0000007a;
    border-radius: 10px;
    padding: 1rem;
}

.rules-content ul {
    margin-left: 2rem;
}
.rules-content ul li {
    margin-bottom: 1rem;
}

.rules-content h3 {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: .5rem;
    font-size: 1.4rem;
}

