body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #e26161;
    color: #333;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: #e96363;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.hero span {
    color: #222;
}

.highlight {
    color: #e63946;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;

}

.feature {
    max-width: 300px;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
}

.icon {
    font-size: 3rem;
    color: #e63946;
    margin-bottom: 10px;
}

#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background 0.3s;
}


.whatsapp-btn img {
  width: 60px;          /* tamanho do ícone */
  height: 60px;
  border-radius: 50%;   /* deixa circular */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}



/*---------------------------------------------------------------------------------------------*/



.cta-container {
    text-align: center;
    margin: 20px 0;
}

.cta-link {
    display: inline-block;
    background-color: #1835b6;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: #d62839;
    transform: scale(1.05);
}

/*---------------------------------------------------------------------------------------------*/

.A1{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-decoration: none;
  border: 3px solid yellow;
  border-radius: 30px;
	color: white;
	padding: 15px;
  text-align: left;
}
