* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================
   SEÇÃO HERO
=================== */
.hero {
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.banner-space {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.banner-image {
    margin: 0 auto;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Preço em Destaque */
.price-highlight {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #ff6000;
    border-radius: 15px;
    padding: 15px 30px;
    margin: 30px auto;
    max-width: 400px;
    text-align: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: priceGlow 2s ease-in-out infinite alternate;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes priceGlow {
    from { 
        box-shadow: 0 10px 30px rgba(255, 96, 0, 0.2);
        transform: scale(1);
    }
    to { 
        box-shadow: 0 15px 40px rgba(255, 96, 0, 0.4);
        transform: scale(1.02);
    }
}

.banner-placeholder {
    background: rgba(255, 255, 255, 0.2);
    border: 3px dashed rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.banner-placeholder:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.banner-placeholder i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: slideInDown 1s ease-out;
}

/* Promessa Emocional */
.emotional-promise {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 0 auto 40px;
    max-width: 900px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promise-highlight {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

.promise-solution {
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 600;
    color: #fff5f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out 0.2s both;
}

/* ===================
   BOTÕES CTA
=================== */
.cta-button {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    color: #ff6000;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #ffffff);
}

.cta-button i {
    font-size: 1.2em;
}

.cta-main {
    font-size: 1.4rem;
    padding: 25px 50px;
    margin-top: 20px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-middle {
    background: linear-gradient(45deg, #ff6000, #ff8533);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-middle:hover {
    background: linear-gradient(45deg, #ff8533, #ff6000);
    transform: translateY(-3px) scale(1.02);
}

.cta-urgency {
    background: linear-gradient(45deg, #fff, #fffbf0);
    border: 3px solid #ff6000;
    animation: glow 2s ease-in-out infinite alternate;
}

.cta-urgency-exclusive {
    background: linear-gradient(45deg, #ff6000, #ff4500);
    color: white;
    border: 3px solid #fff;
    font-size: 1.2rem;
    padding: 18px 35px;
}

/* ===================
   SEÇÃO PROMESSA
=================== */
.promise {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff6000;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.promise-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #444;
    line-height: 1.8;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 96, 0, 0.1);
    border-left: 5px solid #ff6000;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 96, 0, 0.2);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #ff6000;
    min-width: 24px;
}

.benefit-item span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* ===================
   SEÇÃO DE URGÊNCIA EXCLUSIVA
=================== */
.urgency-exclusive {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    padding: 60px 0;
    position: relative;
}

.urgency-exclusive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 96, 0, 0.05) 15px,
        rgba(255, 96, 0, 0.05) 30px
    );
}

.urgency-box {
    background: #fff;
    border: 3px solid #ff6000;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 96, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.urgency-exclusive-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6000;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.urgency-exclusive-text {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ===================
   SEÇÃO VISUAL
=================== */
.visual {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
}

.mockup-space {
    text-align: center;
}

.mockup-placeholder {
    background: #fff;
    border: 3px dashed #ff6000;
    border-radius: 20px;
    padding: 80px 40px;
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(255, 96, 0, 0.1);
    transition: all 0.3s ease;
}

.mockup-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 96, 0, 0.15);
}

.mockup-placeholder i {
    font-size: 48px;
    color: #ff6000;
}

.mockup-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6000;
}

.mockup-placeholder small {
    color: #666;
    font-size: 1rem;
}

/* ===================
   SEÇÃO URGÊNCIA
=================== */
.urgency {
    background: linear-gradient(135deg, #ff6000 0%, #ff4500 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
}

.urgency-content {
    position: relative;
    z-index: 2;
}

.urgency-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================
   RODAPÉ
=================== */
.footer {
    background: #f8f8f8;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #ff6000;
}

.security-text {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================
   ANIMAÇÕES
=================== */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes glow {
    from { box-shadow: 0 8px 25px rgba(255, 96, 0, 0.3); }
    to { box-shadow: 0 8px 35px rgba(255, 96, 0, 0.6); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.shake {
    animation: shake 1s ease-in-out infinite;
}

/* ===================
   RESPONSIVIDADE
=================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .emotional-promise {
        padding: 20px;
    }
    
    .price-highlight {
        padding: 12px 25px;
        margin: 20px auto;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .promise-highlight,
    .promise-solution {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .urgency-title,
    .urgency-exclusive-title {
        font-size: 1.8rem;
    }
    
    .urgency-exclusive-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .cta-main {
        padding: 20px 35px;
        font-size: 1.2rem;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .banner-placeholder,
    .banner-image {
        padding: 40px 20px;
    }
    
    .banner-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .urgency-box {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .emotional-promise {
        padding: 15px;
    }
    
    .price-highlight {
        padding: 10px 20px;
        margin: 15px auto;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .promise-highlight,
    .promise-solution {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .urgency-title,
    .urgency-exclusive-title {
        font-size: 1.5rem;
    }
    
    .urgency-exclusive-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 8px;
    }
    
    .cta-main {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .urgency-box {
        padding: 25px 15px;
    }
}
