* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; }
header { box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-top { padding: 10px 0; font-size: 14px; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.header-top i { margin-right: 8px; }
nav { padding: 15px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 24px; font-weight: bold; }
.logo i { font-size: 32px; }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu a { text-decoration: none; font-weight: 500; transition: color 0.3s; }
.menu-toggle { display: none; font-size: 24px; background: none; border: none; cursor: pointer; }
.hero { padding: 120px 0; padding-bottom: 140px; text-align: center; }
.hero h1 { font-size: 48px; margin-bottom: 20px; animation: fadeInUp 1s; }
.hero p { font-size: 20px; margin-bottom: 30px; animation: fadeInUp 1.2s; }
.btn { display: inline-block; padding: 15px 35px; text-decoration: none; border-radius: 50px; font-weight: bold; transition: transform 0.3s, box-shadow 0.3s; animation: fadeInUp 1.4s; }
.btn:hover, .social-links a:hover { transform: translateY(-3px); }
.btn-primary { margin-right: 15px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; padding-bottom: 100px; }
.section-title { text-align: center; font-size: 36px; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { padding: 40px 30px; border-radius: 15px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 25px rgba(0,0,0,0.15); }
.service-card i { font-size: 48px; margin-bottom: 20px; }
.service-card h3 { font-size: 22px; margin-bottom: 15px; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-content2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; align-items: center; }
.about-image { width: 100%; height: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.about-text h3 { font-size: 28px; margin-bottom: 20px; }
.about-text p { margin-bottom: 15px; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-item i { font-size: 24px; color: #2db742; }
.rating-summary { text-align: center; margin-bottom: 60px; }
.rating-number { font-size: 48px; font-weight: bold; }
.stars { font-size: 24px; margin: 10px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { padding: 30px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-10px); box-shadow: 0 15px 25px rgba(0,0,0,0.15); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-details h4 { margin-bottom: 5px; }
.contact-details a { text-decoration: none; font-weight: 500; }
.map-container { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.map-container iframe { width: 100%; height: 300px; border: none; }
footer { padding: 50px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section h3 { margin-bottom: 20px; }
.footer-section p, .footer-section a { text-decoration: none; display: block; margin-bottom: 10px; }
.footer-section a:hover { color: white; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #334155; }
.whatsapp-float { position: fixed; bottom: 10px; right: 10px; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; cursor: pointer; transition: transform 0.3s; z-index: 1000; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.justify { text-align: justify; }
#inicio, #servicios, #nosotros, #opiniones, #contacto { scroll-margin-top: 100px; }
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); display: none; }
    .nav-menu.active { display: flex; }
    .hero h1 { font-size: 32px; }
    .about-content, .contact-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .btn { display: block; margin: 10px 0; }
    .header-top .container { font-size: 12px; }
    .name { display: none; }
    .first-button { margin-bottom: 20px; }
    .about-image { height: 288px; }
}