/* ARQUIVO: style.css
   PROJETO: Landing Page Caroline Bispo
   DESCRIÇÃO: Estilização Premium com foco em conversão e design responsivo.
*/

/* 1. CONFIGURAÇÕES GERAIS */
:root {
    --primary-blue: #001f3f;
    --secondary-blue: #003366;
    --accent-blue: #007bff;
    --danger-red: #ef4444;
    --success-green: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.8; /* Espaçamento vertical caprichado [cite: 85] */
    overflow-x: hidden;
}

/* 2. TIPOGRAFIA & ESPAÇAMENTO */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* 3. SEÇÕES & FUNDOS */
.bg-premium-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.section-padding {
    padding: 80px 0;
}

/* 4. COMPONENTES: CARTÕES (DOR E SOLUÇÃO) */
/* Seção: Seu concorrente já entendeu o jogo [cite: 16, 17] */
.card-red {
    background: linear-gradient(145deg, #fff5f5, #ffffff);
    border: 1px solid #fee2e2;
    border-radius: 16px; /* Bordas arredondadas [cite: 88, 93] */
    padding: 2rem;
    transition: transform 0.3s ease;
}

.card-red:hover {
    transform: translateY(-5px);
    border-color: var(--danger-red);
}

/* Seção: Como eu estruturo sua presença [cite: 36, 38] */
.card-green {
    background: linear-gradient(145deg, #f0fdf4, #ffffff);
    border: 1px solid #dcfce7;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.card-green:hover {
    transform: translateY(-5px);
    border-color: var(--success-green);
}

/* 5. BOTÕES & ANIMAÇÕES */
.btn-main {
    background-color: var(--accent-blue);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-main:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Efeito de Pulso Sutil */
.btn-pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* 6. WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* 7. REDES SOCIAIS ORIGINAIS */
.social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-blue);
    transform: rotate(10deg);
}

/* 8. RESPONSIVIDADE */
@media (max-width: 768px) {
    .grid-2-columns {
        grid-template-columns: 1fr; /* Coluna única no mobile */
    }
    
    h1 { font-size: 2rem; }
    
    .about-content {
        flex-direction: column-reverse; /* Foto acima do texto no mobile */
        text-align: center;
    }
}