/* Estilos comuns para o Santander */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Seções */
.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #EC0000;
    text-align: center;
}

/* Blocos de conteúdo */
.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #EC0000;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.highlight-block {
    background-color: rgba(236, 0, 0, 0.05);
    border-left: 4px solid #EC0000;
    padding: 20px;
    border-radius: 0 4px 4px 0;
}

.emphasis {
    font-weight: 600;
    font-style: italic;
}

.steps {
    font-size: 1.3rem;
    font-weight: 600;
}

.highlight {
    color: #EC0000;
    font-weight: 600;
}

.center {
    text-align: center;
}

/* Listas */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Citação grande */
.big-quote {
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    margin: 30px 0;
}

/* Botão */
.btn-primary {
    display: inline-block;
    background-color: #EC0000;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #D10000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(236, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    flex: 1;
}

.logo-small {
    max-width: 120px;
    filter: brightness(0) invert(1);
}

.footer-info {
    flex: 2;
    text-align: right;
}

.contact-info {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-block p, .content-block li {
        font-size: 1rem;
    }
    
    .big-quote {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
        margin-top: 20px;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.8s ease-out;
}
