/* === styles.css (extraído de index.php) === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; scroll-behavior: smooth; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: bold; }
.location-badge { background: rgba(255,255,255,0.2); padding: 0.3rem 0.8rem; border-radius: 15px; font-size: 0.9rem; margin-left: 1rem; }
nav ul { display: flex; list-style: none; gap: 2rem; }
nav a { color: white; text-decoration: none; transition: opacity 0.3s; }
nav a:hover { opacity: 0.8; }

/* Hero Section */
#hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; text-align: center; padding: 150px 0 100px; margin-top: 80px; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1rem; font-weight: bold; line-height: 1.2; }
.hero-subtitle { font-size: 1.4rem; margin-bottom: 2rem; opacity: 0.9; max-width: 800px; margin-left: auto; margin-right: auto; }
.rating-display { display: flex; justify-content: center; align-items: center; gap: 1rem; margin: 2rem 0; font-size: 1.1rem; }
.stars { color: #ffd700; font-size: 1.5rem; }
.cta-button { display: inline-block; background: #ff6b6b; color: white; padding: 18px 40px; text-decoration: none; border-radius: 50px; font-size: 1.2rem; font-weight: bold; transition: all 0.3s; box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3); margin: 10px; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4); }
.cta-secondary { background: transparent; border: 2px solid white; color: white; }
.cta-secondary:hover { background: white; color: #667eea; }

/* Sections */
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: #333; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* About */
#about { background: #f8f9fa; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.about-text { font-size: 1.1rem; line-height: 1.8; }
.about-text h3 { color: #667eea; margin-bottom: 1rem; font-size: 1.5rem; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
.stat-item { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.stat-number { font-size: 2.5rem; font-weight: bold; color: #667eea; display: block; }

/* Problems */
#problems { background: white; }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.problem-card { background: #fff; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); text-align: center; border-left: 4px solid #ff6b6b; }
.problem-card h3 { color: #ff6b6b; margin-bottom: 1rem; font-size: 1.3rem; }
.problem-icon { font-size: 3rem; color: #ff6b6b; margin-bottom: 1rem; }

/* Services */
#services { background: #f8f9fa; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; margin-top: 3rem; }
.service-card { background: white; padding: 3rem 2rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #667eea, #764ba2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 2rem; color: white; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #333; }
.service-features { list-style: none; margin: 1.5rem 0; text-align: left; }
.service-features li { padding: 0.5rem 0; position: relative; padding-left: 25px; }
.service-features li:before { content: "✓"; position: absolute; left: 0; color: #4CAF50; font-weight: bold; }
.service-price { font-size: 1.8rem; font-weight: bold; color: #667eea; margin: 1rem 0; }

/* Benefits */
#benefits { background: white; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.benefit-item { text-align: center; padding: 2rem 1rem; }
.benefit-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #4CAF50, #45a049); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: white; }
.benefit-item h3 { color: #333; margin-bottom: 1rem; }

/* Testimonials */
#testimonials { background: #f8f9fa; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); position: relative; }
.testimonial-text { font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.testimonial-author { font-weight: bold; color: #667eea; }
.testimonial-business { font-size: 0.9rem; color: #666; }
.quote-icon { position: absolute; top: -10px; left: 20px; font-size: 3rem; color: #667eea; opacity: 0.3; }

/* FAQ */
#faq { background: white; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1rem; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.faq-question { padding: 1.5rem; background: #f8f9fa; cursor: pointer; font-weight: bold; position: relative; }
.faq-question:after { content: "+"; position: absolute; right: 20px; font-size: 1.5rem; color: #667eea; }
.faq-answer { padding: 1.5rem; display: none; background: white; line-height: 1.6; }

/* Contact */
#contact { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; text-align: center; }
.contact-form { max-width: 600px; margin: 3rem auto 0; background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 15px; backdrop-filter: blur(10px); }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: bold; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem; border: none; border-radius: 8px; font-size: 1rem; }
.form-group textarea { height: 120px; resize: vertical; }
.whatsapp-cta { background: #25D366; color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; margin: 1rem; transition: all 0.3s; }
.whatsapp-cta:hover { background: #1da851; transform: translateY(-2px); }

/* Footer */
footer { background: #333; color: white; padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-section h3 { margin-bottom: 1rem; color: #667eea; }
.footer-section ul { list-style: none; }
.footer-section ul li { padding: 0.3rem 0; }
.footer-section a { color: white; text-decoration: none; }
.footer-section a:hover { color: #667eea; }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #555; color: #aaa; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .section-title { font-size: 2rem; }
  .location-badge { display: none; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.6s ease-out; }

/* Floating WhatsApp Button */
.floating-whatsapp { position: fixed; bottom: 20px; right: 20px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; z-index: 1000; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); animation: pulse 2s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
