/* ===================================
   Agenda Cheia em Aracaju - CSS
   Mobile-First (9:16)
   =================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --dark-navy: #0A0E1A;
    --dark-slate: #111827;
    --blue-electric: #00B4D8;
    --orange: #FF6B35;
    --green: #10B981;
    --red: #EF4444;
    --white: #FFFFFF;
    --gray-light: #E5E7EB;
    --gray-medium: #9CA3AF;
    --gray-dark: #374151;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-light);
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }

p {
    margin-bottom: 16px;
}

strong {
    font-weight: 700;
    color: var(--white);
}

.text-large {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
}

.highlight {
    color: var(--blue-electric);
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

.highlight-orange {
    color: var(--orange);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-oferta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 22px 40px;
    font-size: 19px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-electric) 0%, #0090BB 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--orange) 0%, #E05A2F 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.6);
}

.btn-oferta {
    background: linear-gradient(135deg, var(--orange) 0%, #FF4500 100%);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5);
    animation: pulse-glow 2s infinite;
}

.btn-oferta:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.7);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(255, 107, 53, 0.8); }
}

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

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--blue-electric) 0%, var(--orange) 100%);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    position: relative;
}

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

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 180, 216, 0.2);
    border: 2px solid var(--blue-electric);
    border-radius: 24px;
    color: var(--blue-electric);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 32px;
}

.cta-box {
    margin: 32px 0;
}

.cta-subtext {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-medium);
}

.cta-subtext.white {
    color: var(--gray-light);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--green);
}

.price-strike {
    text-decoration: line-through;
    color: var(--red);
    font-weight: 700;
}

.price-now {
    color: var(--green);
    font-weight: 900;
    font-size: 24px;
}

.social-proof {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 180, 216, 0.1);
    border-left: 4px solid var(--blue-electric);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-light);
}

.proof-item i {
    color: var(--green);
    font-size: 18px;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 24px;
    color: var(--white);
}

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

.section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

/* Vínculo Section */
.section-vinculo {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.punch-quote {
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-left: 4px solid var(--blue-electric);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 32px 0;
    text-align: center;
}

.punch-quote.orange {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-left-color: var(--orange);
}

.punch-quote.white-bg {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--orange);
}

/* Cards */
.cards-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--blue-electric);
    transform: translateX(4px);
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-electric) 0%, var(--orange) 100%);
    border-radius: 12px;
    font-size: 24px;
    color: var(--white);
}

.card-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* Benefits */
.section-beneficios {
    background: rgba(255, 255, 255, 0.03);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-electric);
    border-radius: 8px;
    font-size: 20px;
    color: var(--white);
}

.benefit-item div {
    font-size: 16px;
    line-height: 1.5;
}

.banner-destaque {
    position: relative;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--orange) 0%, #E05A2F 100%);
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.banner-destaque i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 16px;
}

.banner-destaque i:last-child {
    margin-top: 16px;
    margin-bottom: 0;
}

.banner-destaque p {
    font-size: 20px;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
}

/* Concorrência */
.section-concorrencia {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: pulse-warning 2s infinite;
}

.warning-icon i {
    font-size: 40px;
    color: var(--orange);
}

@keyframes pulse-warning {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.comparison-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
}

.comparison-icon.red {
    background: rgba(239, 68, 68, 0.2);
    color: var(--red);
}

.comparison-icon.green {
    background: rgba(16, 185, 129, 0.2);
    color: var(--green);
}

.comparison-divider {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    padding: 8px 0;
}

/* Frases de Impacto */
.section-frases {
    background: var(--dark-navy);
}

.quotes-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--blue-electric);
    border-radius: 12px;
    position: relative;
}

.quote-card i {
    font-size: 20px;
    color: var(--blue-electric);
    opacity: 0.5;
    margin-bottom: 12px;
}

.quote-card p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Oferta Section */
.section-oferta {
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--dark-navy) 100%);
    border-top: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
}

.oferta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--orange);
    border-radius: 24px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 24px;
    display: block;
    text-align: center;
    width: fit-content;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 32px 0;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px solid var(--orange);
}

.price-original {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    color: var(--gray-medium);
}

.price-original .price-strike {
    font-size: 24px;
}

.price-atual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-atual > span:first-child {
    font-size: 14px;
    color: var(--gray-medium);
    text-transform: uppercase;
}

.price-large {
    font-size: 64px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    font-family: var(--font-heading);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.price-large span {
    font-size: 40px;
}

.price-parcelado {
    font-size: 14px;
    color: var(--gray-light);
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 20px;
}

.justificativas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.just-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.just-item i {
    color: var(--green);
    font-size: 20px;
}

.just-item p {
    margin: 0;
    font-size: 15px;
}

.urgency-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px dashed var(--orange);
    border-radius: 12px;
    margin-top: 32px;
}

.urgency-box i {
    font-size: 24px;
    color: var(--orange);
    animation: pulse-warning 2s infinite;
}

.urgency-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
}

/* FAQ Section */
.section-faq {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(0, 180, 216, 0.1);
    border-color: var(--blue-electric);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-electric) 0%, var(--orange) 100%);
    border-radius: 8px;
    font-size: 16px;
    color: var(--white);
}

.faq-text {
    flex: 1;
    line-height: 1.4;
}

.faq-badge {
    flex-shrink: 0;
    padding: 4px 12px;
    background: var(--orange);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.5px;
}

.faq-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-electric);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 20px 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 12px 0 12px 20px;
    padding: 0;
}

.faq-answer ul li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 8px;
}

/* CTA Final */
.section-cta-final {
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--dark-navy) 100%);
    border-top: 2px solid var(--orange);
}

.warning-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--orange);
    border-radius: 12px;
    margin: 32px 0;
}

.warning-box i {
    font-size: 40px;
    color: var(--orange);
    animation: pulse-warning 2s infinite;
}

.warning-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: var(--white);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--gray-medium);
}

.footer p:first-child {
    font-size: 16px;
    color: var(--white);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn.visible {
    opacity: 1;
    visibility: visible;
}

.floating-btn a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--orange) 0%, #FF4500 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.6);
    transition: all 0.3s ease;
}

.floating-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.8);
}

.floating-btn i {
    font-size: 18px;
}

/* Responsive - Tablets */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    
    .hero-title {
        font-size: 38px;
    }
    
    .cards-vertical {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quotes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
    
    h1 { font-size: 48px; }
    h2 { font-size: 40px; }
    
    .hero-title {
        font-size: 44px;
    }
}