:root {
    --primary: #004D40;
    --primary-dark: #002D26;
    --secondary: #FFB74D;
    --accent: #FF5722;
    --bg-creme: #FDFBF0;
    --text-main: #1A1A1A;
    --white: #ffffff;
    --card-dark: #1A1A1A;
    --header-blue: #03A9F4;
    --radius-lg: 30px;
    --radius-md: 20px;
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--bg-creme);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    padding: 0;
}

.container-main {
    max-width: 480px;
    width: 100%;
    padding: 30px 20px;
}

/* Header */
.header-top-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.profile-img-container-small {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    cursor: pointer;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.profile-text-right h1 {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 900;
}

.social-links-grid {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    margin-bottom: 25px;
}

.social-links-grid i {
    font-size: 1.8rem;
    color: var(--primary);
}

.btn-premium-action-whatsapp {
    background: linear-gradient(135deg, var(--secondary), #FFA726);
    color: var(--primary-dark);
    text-decoration: none;
    display: block;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 12px 30px rgba(255, 183, 77, 0.3);
}

/* Section Spacing (80px instead of 50px) */
.section-premium {
    margin-top: 80px;
}

/* App Cards */
.app-card-premium {
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
}

.app-card-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
}

.app-card-body {
    padding: 10px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-card-body h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0 0 3px 0;
    font-weight: 800;
}

.app-card-body p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.3;
}

.btn-more-info {
    background: var(--secondary);
    border: none;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    width: fit-content;
    margin-top: auto;
}

/* SHOWCASE SECTION */
.showcase-center {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-title {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 5px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 30px;
}

.showcase-img-container {
    background: white;
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-premium);
}

.showcase-img-main {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* DARK PREMIUM PRICING CARD */
.dark-card-wrapper {
    margin-top: 60px;
    position: relative;
    padding-top: 40px;
}

.pricing-header-popup {
    background: var(--header-blue);
    color: white;
    width: 75%;
    margin: 0 auto;
    padding: 20px 10px;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 12.5%;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(3, 169, 244, 0.3);
}

.pricing-header-popup h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.pricing-header-popup .price {
    font-size: 2.8rem;
    font-weight: 900;
    display: block;
}

.pricing-header-popup::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--header-blue);
}

.pricing-body-dark {
    background: var(--card-dark);
    border-radius: 30px;
    padding: 100px 30px 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.features-list-premium {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.features-list-premium li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    font-weight: 500;
}

.features-list-premium li i {
    color: var(--header-blue);
    font-size: 1.2rem;
}

.btn-demo-premium {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    text-decoration: none;
    display: block;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: 0.3s;
}

.btn-join-premium {
    background: var(--header-blue);
    color: white;
    text-decoration: none;
    display: block;
    padding: 20px;
    border-radius: 0 0 30px 30px;
    text-align: center;
    font-weight: 900;
    font-size: 1.3rem;
    margin: 0 -30px -40px;
}

/* MODALS */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-container {
    background: var(--bg-creme);
    width: 95%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

/* PREMIUM APP MODAL STYLES */
.modal-app-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-app-icon-big {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.modal-app-title {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 10px;
}

.modal-app-tagline {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.modal-features-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.modal-features-container h4 {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 800;
}

.modal-features-list {
    list-style: none;
    padding: 0;
}

.modal-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
}

.modal-features-list li i {
    color: var(--header-blue);
    font-size: 1rem;
}

/* LAYOUT */
.video-wrapper-premium {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin: 25px 0;
}

.video-wrapper-premium iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.main-store-title {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    margin: 40px 0 20px;
}

.section-label {
    font-size: 1rem;
    color: var(--primary);
    text-align: center;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}