/* ===================================
   CONTROLE TOTAL - Edição Premier
   Mobile-First Stylesheet
   =================================== */

/* === CSS RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

/* === LAYOUT CONTAINERS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

/* === SECTION TITLES === */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
    color: #D4A017;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ccc;
    font-weight: 400;
}

.section-text-center {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ddd;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    background-image: url("attached_assets/Image_fx (8)_1763161329931.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #e0e0e0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* === BUTTONS === */
.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 44px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-btn-gold {
    background: linear-gradient(135deg, #D4A017 0%, #f0c040 100%);
    color: #000;
    border: none;
}

.cta-btn-gold:hover {
    background: linear-gradient(135deg, #f0c040 0%, #D4A017 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 160, 23, 0.4);
}

.cta-btn-outline {
    background: transparent;
    color: #D4A017;
    border: 2px solid #D4A017;
}

.cta-btn-outline:hover {
    background: #D4A017;
    color: #000;
    transform: translateY(-2px);
}

/* === CARDS GRID === */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.cards-grid-3 {
    grid-template-columns: 1fr;
}

/* === FEATURE CARDS === */
.feature-card,
.bonus-card,
.expert-card {
    background: #0f0f0f;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover,
.bonus-card:hover,
.expert-card:hover {
    border-color: #D4A017;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.2);
}

.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #D4A017;
}

.card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
}

/* === BONUS CARDS === */
.bonus-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D4A017 0%, #f0c040 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

/* === GUARANTEE SECTION === */
.guarantee-box {
    background: #121212;
    border: 2px solid rgba(212, 160, 23, 0.5);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
}

.guarantee-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    background: linear-gradient(135deg, #D4A017 0%, #f0c040 100%);
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 24px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* === PRICING SECTION === */
.pricing-section {
    background: #121212;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

.pricing-card {
    background: #0f0f0f;
    border: 2px solid rgba(212, 160, 23, 0.3);
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-featured {
    border: 3px solid #D4A017;
    box-shadow: 0 8px 32px rgba(212, 160, 23, 0.3);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C62828 0%, #e53935 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
}

.pricing-card-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: #D4A017;
}

.pricing-price {
    text-align: center;
    margin-bottom: 24px;
}

.price-old {
    display: block;
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #D4A017;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-highlight {
    font-weight: 700;
    color: #D4A017;
    display: block;
    margin-bottom: 12px;
}

.pricing-security {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 16px;
}

.social-proof {
    text-align: center;
    margin-top: 32px;
    font-size: 1rem;
    color: #D4A017;
    font-weight: 600;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: #0f0f0f;
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 12px;
    padding: 28px 24px;
    position: relative;
}

.testimonial-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4A017;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-badge {
    background: linear-gradient(135deg, #C62828 0%, #e53935 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
    border-left: 3px solid #D4A017;
    padding-left: 16px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #999;
    font-weight: 500;
}

/* === TRUST SECTION === */
.trust-section {
    background: #121212;
}

.trust-tagline {
    text-align: center;
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 40px;
    font-style: italic;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.trust-badge svg {
    width: 56px;
    height: 56px;
}

.trust-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4A017;
}

.contact-box {
    background: #0f0f0f;
    border: 2px solid rgba(212, 160, 23, 0.4);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    margin-top: 40px;
}

.contact-title {
    font-size: 1.5rem;
    color: #D4A017;
    margin-bottom: 12px;
}

.contact-text {
    font-size: 1rem;
    color: #ccc;
}

/* === FOOTER === */
.footer {
    background: #000;
    padding: 40px 0 24px;
    border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.footer-text {
    text-align: center;
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 12px;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 24px;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Tablets (768px+) */
@media (min-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

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

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-text {
        font-size: 1.4rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .section-padding {
        padding: 100px 0;
    }

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

    .hero-title {
        font-size: 3.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

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

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

/* Focus states for keyboard navigation */
a:focus,
button:focus {
    outline: 3px solid #D4A017;
    outline-offset: 4px;
}

/* Ensure touch targets are large enough */
@media (max-width: 767px) {
    .cta-btn {
        width: 100%;
        max-width: 400px;
    }
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.85);
    }

    .card-text {
        color: #fff;
    }
}

/* ===================================
   SALES NOTIFICATIONS
   =================================== */

#sales-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.sales-notification {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(212, 160, 23, 0.5);
    border-radius: 12px;
    padding: 16px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 160, 23, 0.2);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sales-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.sales-notification.hide {
    transform: translateX(400px);
    opacity: 0;
}

.notification-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
}

.notification-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.notification-package {
    font-size: 0.85rem;
    color: #D4A017;
    font-weight: 600;
}

.notification-location {
    font-size: 0.8rem;
    color: #aaa;
}

.notification-time {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

/* Mobile adjustments for notifications */
@media (max-width: 767px) {
    #sales-notifications {
        right: 10px;
        top: 10px;
        left: 10px;
    }

    .sales-notification {
        min-width: auto;
        max-width: 100%;
    }
}
