/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #4b5563;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: #0891b2;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #4b5563;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0891b2;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(8, 145, 178, 0.2);
}

.header-cta:hover {
  background-color: #0e7490;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px -2px rgba(8, 145, 178, 0.3);
}

.header-phone {
  display: none;
}

@media (min-width: 640px) {
  .header-phone {
    display: inline;
  }
}

.phone-icon {
  width: 1rem;
  height: 1rem;
}

/* Hero Section */
.hero {
  padding: 4rem 0 6rem;
  text-align: center;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(8, 145, 178, 0.3);
  border: 2px solid transparent;
}

.hero-cta:hover {
  background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(8, 145, 178, 0.4);
}

.hero-cta .phone-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Specialists Section */
.specialists {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.highlight-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}

.text-primary {
  color: #0891b2;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px -2px rgba(8, 145, 178, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -2px rgba(8, 145, 178, 0.4);
}

.section-cta {
  text-align: center;
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #0891b2;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #0891b2;
}

.service-title {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.125rem;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #1d4ed8;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  color: #155e75;
  margin: 0 auto 1rem;
}

.feature-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: #6b7280;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.step {
  text-align: center;
}

.step-number {
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px -2px rgba(8, 145, 178, 0.3);
}

.step-title {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: #6b7280;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
}

.faq-list {
  max-width: 64rem;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.faq-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #0891b2;
}

.faq-question {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.faq-answer {
  color: #6b7280;
}

/* Legal Section */
.legal {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.legal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}

.legal-text {
  color: #6b7280;
  margin-bottom: 1rem;
}

.legal-text:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: white;
  border-top: 1px solid #e5e7eb;
  padding: 3rem 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #0891b2;
}

.footer-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #4b5563;
}

.footer-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0891b2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-phone:hover {
  color: #0e7490;
  transform: translateY(-1px);
}

.footer-phone .phone-icon {
  width: 1rem;
  height: 1rem;
}

.center {
  display: flex;
  flex-direction: column;
}

.text-center {
  text-align: center;
}

.terminos h2,
.terminos h3 {
  margin-top: 2rem;
}

footer nav ul {
  list-style: none;
  display: flex;
  font-family: Roboto, sans-serif;
  justify-content: center;
  gap: 16px;
}
footer nav ul li a {
  color: #1f2937;
  text-decoration: none;
}

footer nav ul li a:hover {
  color: #0891b2;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
