/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.lead {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* fonte mais fina */
    font-weight: 300;       
    font-size: 1.1rem;      
    line-height: 1.6;       
    color: #333;                
}

.lead strong {
    font-weight: 700; /* garante negrito dentro de .lead */
}

/* Botão customizado */
.btn-custom {
    background-color: #1e4e7b;
    color: #fff;
    border: none;
    border-radius: 7px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    padding: 0.5rem 1rem; /* tamanho padrão */
    font-size: 1rem;      /* tamanho padrão */
    cursor: pointer;
}

/* Hover */
.btn-custom:hover {
    background-color: #16395a;
    text-decoration: none;
	color: #fff;
}

/* Ativo */
.btn-custom:active {
    transform: scale(0.97);
}

/* Compatível com btn-sm do Bootstrap */
.btn-custom.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e4e7b, #2ebf91);
}

.hero .hero-img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

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

.hero p {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    font-size: 1.1rem;
}

/* Método Xô Diabetes */
.metodo-section ul {
    list-style: none;
    padding-left: 0;
}

.metodo-section ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.metodo-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2ebf91;
    font-weight: bold;
}


/* Ebooks */
.card img {
    height: 480px;
    object-fit: cover;
}

/* Parcerias */
.parcerias-section {
    background-color: #ffffff;
}

.parceria-card {
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.2s ease-in-out;
}

.parceria-card:hover {
    transform: translateY(-5px);
}

.parceria-card h5 {
    font-weight: bold;
    color: #333;
}

.parceria-card p {
    font-size: 1rem;
    color: #555;
}

.parceria-card .btn {
    background-color: #28a745;
    border: none;
}

.parceria-card .btn:hover {
    background-color: #218838;
}

/* Acessórios */
.indicacao-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.indicacao-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.indicacao-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

/* Quem Sou */
.quem-sou-section {
    background-color: #ffffff;
}

/* Botão flutuante do WPP */
.whatsapp-btn {
	position: fixed;
	z-index: 9999;
	right: 1rem;
	bottom: 1rem;
	background-color: #198754; /* Bootstrap success */
	transition: all 0.3s ease-in-out;

	width: 60px;
	height: 60px;
	border-radius: 50%;
	padding: 0;

}

/* Footer */
.social-icons a {
    text-decoration: none; /* remove o sublinhado */
    color: inherit;        /* mantém a cor do texto, no caso branco */
    transition: color 0.3s; /* efeito suave ao passar o mouse */
}

.social-icons a:hover {
    color: #ff6b6b; /* cor de destaque ao passar o mouse, opcional */
}
