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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

/* Header */
.header {
    background: rgba(227, 209, 209, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 60px;
    width: auto;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: #E3D1D1;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #dc3545;
    position: relative;
}

.highlight-pro {
    color: #dc3545;
    background: linear-gradient(45deg, #dc3545, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #666;
}

.hero-description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
}

.product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(220, 53, 69, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Product Introduction */
.product-intro {
    padding: 80px 0;
    background: #E3D1D1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item img {
    width: 210px;
    height: 270px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #dc3545, #ff6b7a);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.243);
    border-radius: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.benefit-item img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 50px rgba(220, 53, 69, 0.4));
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
}

.problem-section .section-title {
    color: white;
    margin-bottom: 30px;
}

.problem-text {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.problem-explanation {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.problem-consequence {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.body-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}


.area-item {
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.area-item img {
    width: 120px;
    height: 80px;
    margin-right: 10px;
    border-radius: 15px;
    background-color: #00e620;
}

.area-item:hover {
    transform: scale(1.05);
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.solution-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #dc3545, #ff6b7a);
    color: white;
    padding: 25px 50px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(220, 53, 69, 0.6);
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-guarantee {
    margin-top: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .body-areas {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .product-intro,
    .problem-section,
    .solution-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
}

/* Animações adicionais */
.benefit-item {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

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

/* Efeito de pulso no botão CTA */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}



/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f0f2f5;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.product-card {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.old-product {
    background-color: #131111;
    color: #f8f9fa;
    border: 2px solid #00FF23;
}

.old-product h3 {
    color: #00FF23;
}

.old-product p {
    color: #ccc;
}

.new-product {
    background-color: #F5F4ED;
    color: #333;
    border: 2px solid #DF4344;
}

.new-product h3 {
    color: #DF4344;
}

.new-product p {
    color: #555;
}

.comparison-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.product-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-card .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.old-product .btn {
    background-color: #00FF23;
    color: #131111;
}

.old-product .btn:hover {
    background-color: #00e620;
    transform: translateY(-3px);
}

.new-product .btn {
    background-color: #DF4344;
    color: #FFFFFF;
}

.new-product .btn:hover {
    background-color: #c83b3b;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}