/* Loading Overlay Styles removidos */

/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a0000 0%, #2a0505 50%, #1a0000 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.15), transparent 70%),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 70%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Partículas de fundo */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: rgba(230, 0, 0, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

/* Cabeçalho */
header {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #e60000;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.5);
}

.profile-info {
    text-align: left;
}

.profile-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #e60000, #ff3333);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(230, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #b5c2c9;
    font-weight: 500;
}

/* Seção Hero */
.hero {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 0, 0, 0.7);
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(90deg, #e60000, #ff3333);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Botões CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e60000, #b30000);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(230, 0, 0, 0.4);
    background: linear-gradient(45deg, #b30000, #e60000);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
}

.cta-button i {
    margin-right: 10px;
}

/* Animação de pulse para os botões */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(230, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
    }
}

.pulse {
    animation: pulse 1.5s infinite;
}

/* Seções */
section {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #e60000, #ff3333);
    border-radius: 3px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background: rgba(26, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(230, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #e60000;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-box p {
    color: #b5c2c9;
    font-size: 0.95rem;
}

/* Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(26, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(230, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(230, 0, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e60000, #b30000);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-card p {
    color: #b5c2c9;
    font-size: 0.95rem;
}

/* CTA inferior */
.bottom-cta {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 0, 0, 0.7);
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 0, 0, 0.2);
}

.bottom-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #e60000, #ff3333);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #b5c2c9;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    color: #b5c2c9;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Removido estilos para logotipo e card minimalista */

/* Responsividade */
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .features-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        width: 100%;
    }
}
