body {
font-family: sans-serif;
margin: 0;
line-height: 1.6;
color: #333;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section-padding {
padding: 60px 0;
}

.bg-light {
background-color: #f9f9f9;
}

/* Hero Section */
.hero {
background-color: #e0f7fa;
padding: 100px 0;
}

.hero .container {
display: flex;
justify-content: space-between;
align-items: center;
gap: 40px;
}

.hero-content {
max-width: 50%;
}

.hero-content h1 {
font-size: 2.5em;
margin-bottom: 20px;
line-height: 1.2;
}

.hero-content h1 span {
color: #00bcd4;
}

.hero-content p {
font-size: 1.1em;
margin-bottom: 30px;
}

.hero-image {
max-width: 408px;
}

.hero-image img {
border-radius: 50%;
transition: transform 0.3s ease-in-out;
width: 100%;
height: auto;
}

.hero-image img:hover {
transform: scale(1.2);
}

.button {
display: inline-block;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}

.primary-button {
background-color: #00bcd4;
color: white;
}

.primary-button:hover {
background-color: #008ba7;
}

/* Problems & Solution */
.problems-solution h2 {
font-size: 2em;
margin-bottom: 20px;
text-align: center;
}

.problems-solution p {
text-align: center;
font-size: 1.1em;
color: #666;
}

/* Services Section */
.services h2 {
font-size: 2em;
margin-bottom: 30px;
text-align: center;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.service-item {
background-color: white;
padding: 20px;
border-radius: 5px;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
cursor: pointer;
}

.service-item:hover {
transform: scale(1.05);
}

.service-item img {
max-width: 120px;
height: auto;
margin-bottom: 15px;
border-radius: 50%;
transition: transform 0.3s ease-in-out;
}

.service-item img:hover {
transform: scale(1.1);
}

.service-item h3 {
font-size: 1.3em;
margin-bottom: 10px;
}

.service-item p {
color: #666;
}

/* Why Us Section */
.why-us h2 {
font-size: 2em;
margin-bottom: 30px;
text-align: center;
}

.why-us-list {
list-style: none;
padding: 0;
max-width: 600px;
margin: 0 auto;
}

.why-us-list li {
padding: 15px 0;
border-bottom: 1px solid #eee;
}

.why-us-list li:last-child {
border-bottom: none;
}

/* Testimonials Section */
.testimonials h2 {
font-size: 2em;
margin-bottom: 30px;
text-align: center;
}

.testimonial-with-image {
display: flex;
align-items: center;
justify-content: center; /* Centraliza a caixa inteira */
gap: 20px;
max-width: 800px;
margin: 0 auto;
}

.testimonial-card {
background-color: white;
padding: 30px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.testimonial-image {
width: 120px;
height: 120px;
border-radius: 50%; /* Torna a imagem redonda */
overflow: hidden;
border: 4px double #00bcd4; /* Borda dupla para destaque */
box-shadow: 0 0 10px rgba(0, 188, 212, 0.7); /* Sombra que cria um efeito de brilho */
}

.testimonial-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.testimonial-card p {
font-style: italic;
color: #555;
margin-bottom: 15px;
}

.testimonial-card cite {
font-weight: bold;
font-style: normal;
color: #333;
}

/* CTA Section */
.cta {
text-align: center;
}

.cta h2 {
font-size: 2em;
margin-bottom: 30px;
}

/* Footer */
.footer {
background-color: #333;
color: white;
text-align: center;
}

.footer .container {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 30px;
padding-bottom: 30px;
}

.footer ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer ul li {
display: inline;
margin-left: 20px;
}

.footer ul li a {
color: white;
text-decoration: none;
}

/* MEDIA QUERIES para responsividade */
@media (max-width: 768px) {
/* Centraliza a seção Hero, empilhando os itens */
.hero .container {
flex-direction: column;
text-align: center;
gap: 20px;
}

.hero-content {
max-width: 100%;
margin-bottom: 40px;
padding-right: 0;
}

.hero-image {
max-width: 324px;
margin: 30px auto 0;
}

/* Centraliza os textos e itens de lista em todas as seções */
.problems-solution h2,
.problems-solution p,
.why-us h2,
.why-us-list,
.testimonials h2,
.testimonial-card,
.cta h2 {
text-align: center;
}

/* Centraliza a lista de diferenciais */
.why-us-list {
padding: 0 20px;
}

/* Centraliza o rodapé */
.footer .container {
flex-direction: column;
}

.footer ul {
margin-top: 10px;
}

.footer ul li {
margin: 0 10px;
}
}