/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Section */
.header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out;
    position: relative;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    z-index: 2;
}

.confirmation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Product Section */
.product-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    text-align: center;
}

.product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.product-description h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-description p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* Section Titles */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 25px;
    text-align: center;
}

/* Process Section */
.process-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #FFD700;
}

.process-steps {
    display: grid;
    gap: 25px;
    margin-top: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-icon {
    font-size: 1.8rem;
    color: #1e3c72;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.step-content h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Shipping Section */
.shipping-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 15px;
    color: #333;
}

.shipping-section .section-title {
    color: #333;
    margin-bottom: 25px;
}

.shipping-info {
    display: grid;
    gap: 20px;
}

.shipping-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.shipping-icon {
    font-size: 1.5rem;
    color: #1e3c72;
    min-width: 40px;
}

.shipping-details {
    font-size: 1rem;
    line-height: 1.6;
}

/* Motivation Section */
.motivation-section {
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.motivation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.motivation-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.benefits-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #1e3c72;
    font-weight: 500;
}

.benefit i {
    color: #FFD700;
    font-size: 1.2rem;
}

.motivation-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

/* WhatsApp Section */
.whatsapp-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 15px;
    color: white;
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.whatsapp-icon {
    font-size: 3rem;
    min-width: 60px;
}

.whatsapp-text h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.whatsapp-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Security Section */
.security-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border-radius: 15px;
    border: 2px solid #4CAF50;
}

.security-content {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.security-icon {
    font-size: 1.5rem;
    color: #4CAF50;
    min-width: 40px;
    margin-top: 5px;
}

.security-text h4 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 5px;
    font-weight: 600;
}

.security-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 40px;
    border-top: 3px solid #1e3c72;
}

.footer-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.footer-links {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

.footer-links span {
    margin: 0 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .header {
        padding: 30px 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .confirmation-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .process-section,
    .shipping-section,
    .motivation-section,
    .whatsapp-section,
    .security-section {
        padding: 20px;
        margin: 30px 0;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-icon {
        align-self: center;
    }
    
    .whatsapp-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .motivation-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .product-img {
        max-width: 280px;
    }
    
    .motivation-img {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .shipping-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .product-img {
        max-width: 220px;
    }
    
    .motivation-img {
        max-width: 200px;
    }
    
    .step {
        padding: 20px 15px;
    }
    
    .shipping-item,
    .security-item {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .benefits-list {
        gap: 8px;
    }
    
    .benefit {
        font-size: 0.9rem;
    }
}

/* Animações adicionais */
.step {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.security-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.security-item:nth-child(1) { animation-delay: 0.1s; }
.security-item:nth-child(2) { animation-delay: 0.2s; }
.security-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.shipping-item:hover,
.security-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.motivation-section:hover .motivation-img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Gradientes e sombras aprimoradas */
.container {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

/* Efeitos especiais para seções importantes */
.product-section {
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30,60,114,0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

