body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
}
a {
text-decoration: none;
}
.hero {
text-align: center;
padding: 40px 20px;
background-color: #f5f5f5;
}
.hero-image img.hero-main-image {
width: 100%;
height: auto;
max-height: 800px;
object-fit: cover;
}
.hero-text h1 {
color: #238d7a;
margin-top: 20px;
animation: fadeInDown 1s ease-out;
}
.hero-text p {
max-width: 600px;
margin: 0 auto 20px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #238d7a;
color: white;
border-radius: 4px;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #a5a04e;
}
.about, .services, .cta-contact {
padding: 60px 20px;
text-align: center;
}
.icon-placeholder {
background-color: #ddd;
width: 80px;
height: 80px;
margin: 0 auto 20px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
}
.services .service-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.service-item {
flex: 1 1 250px;
margin: 20px;
padding: 20px;
background-color: #f9f9f9;
border-radius: 8px;
transition: transform 0.3s;
}
.service-item:hover {
transform: translateY(-5px);
}
.cta-contact h2 {
margin-bottom: 10px;
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
.services .service-list {
flex-direction: column;
align-items: center;
}
}
.whatsapp-button {
position: fixed;
bottom: 80px;
right: 20px;
width: 60px;
height: 60px;
background-color: #25D366;
border-radius: 50%;
background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 30px 30px;
z-index: 1000;
}
#scrollTopBtn {
position: fixed;
bottom: 10px;
right: 20px;
width: 60px;
height: 60px;
background-color: #238d7a;
color: white;
font-size: 24px;
border: none;
border-radius: 8px;
cursor: pointer;
z-index: 999;
display: none;
}
#scrollTopBtn:hover {
background-color: #a5a04e;
}
/* ===== Estilos para menú móvil vertical ===== */
@media (max-width: 768px) {
.header-nav ul {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
right: 0;
width: 100%;
background-color: #fff;
padding: 0;
margin: 0;
text-align: center;
}
.header-nav ul.active {
display: flex;
}
.header-nav ul li {
margin: 10px 0;
}
.hamburger {
display: block;
cursor: pointer;
}
.hero-image {
display: none;
}
}