/* Global Styles */
:root {
    --primary-orange: #FF6A00;
    --primary-orange-hover: #e65e00;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #1A1A1A;
    --text-gray: #8e8e8e;
    --bg-light: #FAFAFA;
    /* Light gray background common in social apps */
    --border-color: #DBDBDB;
    /* Standard subtle border */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 935px;
    /* Instagram width standard */
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-gate-modal {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.2);
}

.age-gate-logo {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.age-gate-modal h2 {
    margin-bottom: 10px;
    font-weight: 700;
}

.age-gate-modal p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.btn-primary-large {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.btn-primary-large:hover {
    background-color: var(--primary-orange-hover);
}

.age-gate-links {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.age-gate-links a:hover {
    text-decoration: underline;
}

/* Top Promo Bar */
.top-promo-bar {
    background-color: var(--primary-orange);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Header */
.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    position: sticky;
    top: 37px;
    /* Height of promo bar roughly */
    z-index: 99;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary-orange);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
}

.header-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Profile Section */
.profile-section {
    max-width: 935px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.banner-area {
    height: 200px;
    background: #333;
    /* Placeholder dark bg */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    overflow: hidden;
}

.banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
}

.profile-info-container {
    padding: 0 20px;
    position: relative;
    margin-top: -50px;
    /* Pull up avatar */
}

/* NEW AVATAR STYLES */
.profile-avatar-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--white);
    background: var(--white);
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* Soft shadow */
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Perfect crop */
    display: block;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.profile-username {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.profile-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.profile-bio {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Subscription Section */
.subscription-section {
    max-width: 600px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Main Plan Card (1 Mês) */
.sub-card.main-plan {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.sub-header h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.sub-price {
    margin: 20px 0;
    color: var(--primary-orange);
}

.sub-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.sub-price .amount {
    font-size: 3rem;
    font-weight: 800;
}

.sub-price .period {
    color: var(--text-gray);
    font-size: 1rem;
}

.sub-benefits {
    text-align: center;
    /* Centered benefits */
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sub-benefits li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sub-benefits li i {
    color: var(--primary-orange);
}

.btn-subscribe {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    text-transform: uppercase;
}

.btn-subscribe:hover {
    transform: scale(1.03);
    background-color: var(--primary-orange-hover);
}

/* Banner Image */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Secondary Plan Card (Anual) - Premium 3D Look */
.sub-card.secondary-plan {
    background: var(--white);
    border-radius: 16px;
    /* Rounded corners */
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 15px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Lift effect on hover (optional, but requested "elevation" look static or interactive) */
.sub-card.secondary-plan:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 8px rgba(0, 0, 0, 0.03),
        0 15px 20px rgba(0, 0, 0, 0.08);
}

.sub-header-secondary {
    text-align: left;
}

.sub-header-secondary h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.badge-secondary {
    background: transparent;
    /* Removed black background */
    color: var(--primary-orange);
    font-size: 0.75rem;
    padding: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-price-secondary {
    text-align: right;
    margin-right: 20px;
}

.sub-price-secondary .currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.sub-price-secondary .amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.sub-price-secondary .period {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: block;
}

.btn-subscribe.secondary {
    width: auto;
    padding: 12px 30px;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(255, 106, 0, 0.2);
    /* Subtle glow/shadow on button */
}

.btn-subscribe.secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
}


/* Gallery */
.gallery-section {
    max-width: 935px;
    margin: 0 auto 40px auto;
    border-top: 1px solid var(--border-color);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.tab {
    background: none;
    border: none;
    padding: 15px 0;
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    border-top: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: -1px;
    /* Overlap border */
}

.tab.active {
    color: var(--text-dark);
    border-top: 1px solid var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

/* Instagram Post Style */
.insta-post {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.insta-header {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insta-avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url('profile.jpg') center/cover no-repeat;
}

.insta-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.insta-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square */
    background: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    overflow: hidden;
    /* Ensure image doesn't overflow */
}

.insta-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-footer {
    padding: 10px;
}

.insta-actions {
    display: flex;
    gap: 15px;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.insta-likes {
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    max-width: 600px;
    margin: 0 auto 100px auto;
    /* Space for sticky footer */
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 15px 15px 15px;
    display: none;
    /* Hidden by default */
    color: #555;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 15px 20px;
    text-align: center;
    z-index: 99;
}

.sticky-content {
    max-width: 600px;
    margin: 0 auto 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sticky-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.sticky-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    width: 100%;
    max-width: 300px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
}

.footer-links {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on small screens */
    }
}