* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header y Navegación */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 60px;
  height: 60px;
  background: #e0e7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Placeholder para el logo - reemplaza con tu imagen */
.logo-img img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
}

.logo-text span {
  color: #b8860b;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #b8860b;
}

.btn-contact {
  background: #b8860b;
  color: white !important;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-contact:hover {
  background: #9e7409;
  color: white !important;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.hero h1 i {
  color: #b8860b;
  font-style: normal;
  border-bottom: 3px solid #b8860b;
}

.hero p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: #1e3a8a;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
}

.btn-primary:hover {
  background: #2e4a9a;
}

.btn-secondary {
  background: transparent;
  color: #1e3a8a;
  padding: 1rem 2.5rem;
  border: 2px solid #1e3a8a;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #1e3a8a;
  color: white;
}

.hero-image {
  background: linear-gradient(135deg, #dbeafe, #ede9fe);
  border-radius: 30px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image i {
  font-size: 10rem;
  color: #1e3a8a;
  opacity: 0.2;
}

.hero-image::before {
  content: "DRISKEL";
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(30, 58, 138, 0.1);
  position: absolute;
  bottom: 30px;
  right: 30px;
  transform: rotate(-5deg);
}

/* Sección Servicios */
.section-header {
  text-align: center;
  margin: 4rem 0 3rem;
}

.section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-header p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #b8860b;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #e0e7ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2.5rem;
  color: #1e3a8a;
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.service-card p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #b8860b;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  gap: 1rem;
}

/* Sección Sobre Nosotros */
.about-section {
  background: white;
  border-radius: 40px;
  padding: 4rem;
  margin: 4rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #475569;
  margin-bottom: 2rem;
}

.stats {
  display: flex;
  gap: 3rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #b8860b;
  font-family: "Montserrat", sans-serif;
}

.stat-item p {
  font-weight: 500;
  color: #334155;
}

.about-image {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  height: 350px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image i {
  font-size: 8rem;
  color: #b8860b;
  opacity: 0.3;
}

/* Sección Bufete Jurídico (destacado) */
.legal-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 30px;
  padding: 4rem;
  color: white;
  margin: 4rem 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.legal-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.legal-content p {
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.legal-features {
  list-style: none;
}

.legal-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-features i {
  color: #b8860b;
}

.legal-image {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.legal-image i {
  font-size: 8rem;
  color: #b8860b;
  opacity: 0.5;
}

/* Formulario de Contacto */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 4rem 0;
  background: white;
  border-radius: 30px;
  padding: 3rem;
}

.contact-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: #e0e7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #b8860b;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #1e3a8a;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #b8860b;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-radius: 40px 40px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo .logo-img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: #94a3b8;
}

.footer-links h4 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1.5rem;
  color: #b8860b;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #b8860b;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .about-grid,
  .legal-grid,
  .contact-section,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }
}
