:root {
    --primary: #FF1493;
    --primary-hover: #D01077;
    --secondary: #FF69B4;
    --accent: #FFB6C1;
    --bg: #FAFAFA;
    --text-dark: #1F1118;
    --text-light: #555555;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, rgba(250, 250, 250, 0) 70%);
    z-index: -1;
}

p, .description, .section-text, .modal-desc, .disclaimer, .notice {
    text-align: justify;
}

h1,
h2,
h3,
h4,
.title,
.subtitle,
.modal-title,
.section-title,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(255, 20, 147, 0.1);
    border-radius: 24px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.logo {
    display: flex;
    align-items: center;
}

.nav-cta {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary);
    color: white;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    white-space: normal;
    max-width: 100%;
    width: auto;
    min-width: 0; 
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 20, 147, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

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

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    min-height: 80vh;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.subtitle {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title span {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
    border: 4px solid white;
}

.blob-shape {
    position: absolute;
    filter: blur(40px);
    z-index: 1;
    border-radius: 50%;
    opacity: 0.6;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -50px;
    right: -50px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: -50px;
    left: -20px;
}

.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -5%;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.section-title span {
    color: var(--primary);
}

.section-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 400;
}

.bold-text {
    font-weight: 600;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 8%;
}

.text-center {
    text-align: center;
}

.about-section {
    background: white;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-section {
    padding: 80px 8%;
    background: var(--bg);
}

.benefits-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.story-container {
    position: relative;
    width: 320px;
    height: 568px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
}

.story-progress {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 3px;
}

.story-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-img.active {
    opacity: 1;
}

.story-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 5;
}

.story-left {
    width: 50%;
    height: 100%;
    cursor: pointer;
}

.story-right {
    width: 50%;
    height: 100%;
    cursor: pointer;
}

.benefits-content {
    flex: 1;
}

.perks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.perk {
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.join-section {
    background: radial-gradient(circle at center, rgba(255, 105, 180, 0.1) 0%, rgba(250, 250, 250, 0) 100%);
}

.join-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
}

.join-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.notice {
    color: var(--primary);
    font-weight: 600;
    margin: 30px 0 !important;
}

.disclaimer {
    font-size: 0.9rem !important;
    color: #888;
    margin-top: 20px;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 20, 147, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 20, 147, 0);
    }
}

.footer {
    background: #1F1118;
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer p {
    font-size: 0.95rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-align: center;
}

.modal-title span {
    color: var(--primary);
}

.modal-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.widi-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-subtitle {
    margin-top: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent);
    color: var(--primary);
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.widi-form input {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.widi-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.input-with-prefix {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-with-prefix:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.prefix {
    padding: 12px 0 12px 15px;
    color: #999;
    font-weight: 600;
    font-size: 0.95rem;
}

.input-with-prefix input {
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 5px;
    width: 100%;
}

.input-with-prefix input:focus {
    box-shadow: none;
}

.social-notice {
    background: rgba(255, 20, 147, 0.1);
    color: var(--primary);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.submit-btn {
    margin-top: 20px;
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h4 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-success p {
    margin-bottom: 30px;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

@media (max-width: 992px) {
    .title {
        font-size: 3.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .badge-1 {
        top: -10%;
    }

    .benefits-grid {
        flex-direction: column;
        text-align: center;
    }

    .story-container {
        margin: 0 auto;
    }

    .perks {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 20px 5%;
    }

    .logo img {
        height: 35px !important;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .modal-content {
        padding: 25px 20px;
    }
}

.hero-map {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

#brazil-map-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(255, 20, 147, 0.2));
}

#brazil-map-container path {
    fill: #FFB6C1;
    stroke: #ffffff;
    stroke-width: 1.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

#brazil-map-container path:hover {
    fill: #FF69B4;
    transform: translateY(-2px);
    filter: drop-shadow(0 5px 10px rgba(255, 20, 147, 0.3));
}

.map-pin-svg {
    opacity: 0;
    animation: popInPin 0.5s ease-out forwards, pulsePinSVG 2s infinite alternate ease-in-out;
}

@keyframes popInPin {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes pulsePinSVG {
    0% { transform: scale(1) translateY(0px); filter: drop-shadow(0 0 2px rgba(255, 20, 147, 0.4)); }
    100% { transform: scale(1.3) translateY(-5px); filter: drop-shadow(0 5px 8px rgba(255, 20, 147, 0.8)); }
}