/* ElectriCugat - Estilos CSS */
:root {
  --primary-orange: #FF6B35;
  --dark-bg: #1a1a1a;
  --secondary-dark: #2d2d2d;
  --text-light: #ffffff;
  --text-dark: #333333;
  --success-green: #28a745;
  --gray-neutral: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

/* Navbar */
.navbar-custom {
  background-color: var(--dark-bg);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--primary-orange) !important;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-orange) !important;
}

.btn-call {
  background-color: var(--success-green);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-call:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
  color: white;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-dark) 100%);
  color: var(--text-light);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  margin-top: 76px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FF6B35" opacity="0.1"/></svg>') repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-orange);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 107, 53, 0.3);
  color: white;
}

.btn-outline-custom {
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-custom:hover {
  background-color: var(--primary-orange);
  color: white;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), #e55a2b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

/* Emergency Section */
.emergency-section {
  background: linear-gradient(135deg, var(--primary-orange), #e55a2b);
  color: white;
  padding: 4rem 0;
  position: relative;
}

/* Stats Section */
.stats-section {
  background: #f8f9fa;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  height: 100%;
}

/* Breadcrumb */
.breadcrumb-custom {
  background: #f8f9fa;
  padding: 1rem 0;
  margin-top: 76px;
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #6c757d;
}

/* Footer */
.footer-custom {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-custom h5 {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.footer-custom a {
  color: var(--gray-neutral);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-custom a:hover {
  color: var(--primary-orange);
}

.text-gray-400 {
  color: #9ca3af !important;
}

.border-gray-600 {
  border-color: #4b5563 !important;
}

/* Form Styles */
.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-select {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
}

.form-select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .btn-call {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}