/* Estilos Gerais */
:root {
    --primary-color: #FF4B7D;
    --secondary-color: #2C3E50;
    --accent-color: #E74C3C;
    --light-color: #ECF0F1;
    --dark-color: #2C3E50;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 200px 0;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/foto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0.4);
    z-index: -1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Botões */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary:hover, 
.btn-primary:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

/* Estatísticas */
.stats-section {
    background-color: var(--light-color);
}

.stats-section h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

/* Como Funciona */
.how-it-works {
    background-color: #fff;
}

.how-it-works .card {
    padding: 30px;
    text-align: center;
}

.how-it-works .card-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
        min-height: 80vh;
    }
    
    .stats-section h3 {
        font-size: 2rem;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
} 