:root {
  --body-color: #edebde;
  --hero-color: #132339;
  --secondary-color: #16a286;
  --light-green: #e0f5f1;
  --title-font-color: #1d2530;
  --text-font-color: #94a0a8;
  --bg-cream: #f5f2e5;
  --card-beige: #ebe7d5;
  --main-font: "Inter", sans-serif;
  --title-font: "Playfair Display", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: var(--main-font);
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--text-font-color);
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  color: var(--title-font-color);
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* Header config */
.main-header {
  background-color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions .btn-primary {
  font-size: 0.8rem;
  padding: 10px 24px;
  border-radius: 10px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-font-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.phone:hover {
  color: var(--secondary-color);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 2px;
}

.logo-title {
  font-family: var(--title-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--title-font-color);
  line-height: 0.9;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-family: var(--main-font);
  font-size: 0.6rem;
  color: var(--text-font-color);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-left: 2px;
}

.navbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-font-color);
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn svg {
  color: var(--secondary-color);
}

/* Hero config */
.hero-background {
  background-color: var(--hero-color);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  background-color: rgba(22, 162, 134, 0.2);
  color: var(--secondary-color);
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 15px;
}

.hero-text h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 15px;
  max-width: 500px;
}

.text-highlight {
  color: var(--secondary-color);
  font-style: italic;
}

.hero-text p {
  color: var(--text-font-color);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 30px;
}

.image-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  border-radius: 20px;
}

.cta-group {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  align-items: center;
}

.btn-secondary {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
}

.btn-primary svg,
.btn-secondary svg,
.phone svg {
  margin-top: -2px;
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.stats-row {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

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

.stat strong {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.stat span {
  color: var(--text-font-color);
  font-size: 0.8rem;
}

.hero-float-icon {
  width: 50px;
  height: 50px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-right: 5px;
  flex-shrink: 0;
}

.floating-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background-color: white;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.95rem;
  color: var(--title-font-color);
  margin-bottom: 2px;
}

.floating-card small {
  font-size: 0.8rem;
  color: var(--text-font-color);
}

/* Nosotros Config */

.about-section {
  background-color: var(--bg-cream);
  padding: 80px 0;
  overflow: hidden;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-subtitle {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin: 0 0 25px 0;
  line-height: 1.1;
}

.about-content p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  margin-top: -5px;
  background-color: rgba(22, 162, 134, 0.15);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h3 {
  margin: 0 0 5px 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}

.bento-card {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  height: 100%;
}

.bento-card:hover {
  transform: translateY(-5px);
}

.bento-card strong {
  display: block;
  font-family: var(--main-font);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--hero-color);
}

.bento-card span {
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hero-color);
  letter-spacing: 1.5px;
}

.bg-green,
.bg-dark {
  color: white;
}

.bg-green span,
.bg-dark span {
  color: white;
}

.bento-card.bg-dark i,
.bento-card.bg-dark svg {
  color: var(--secondary-color);
}

.bg-beige {
  background-color: var(--card-beige);
  color: var(--hero-color);
}

.bg-beige strong {
  font-size: 2.5rem;
  font-family: var(--main-font);
  color: var(--secondary-color);
}

.bg-beige-light {
  background-color: #e6e2d0;
  color: var(--secondary-color);
}

.bg-beige-light strong {
  font-size: 2.5rem;
  font-family: var(--main-font);
  color: var(--secondary-color);
}

.bg-green {
  background-color: var(--secondary-color);
  color: white;
}

.bg-green span {
  font-weight: 600;
  margin-top: 10px;
}

.bg-dark {
  background-color: var(--hero-color);
  color: white;
}

.bg-dark span {
  font-weight: 600;
  margin-top: 10px;
}

@media (min-width: 900px) {
  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
  }

  .bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 90px;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .bento-card:nth-child(1),
  .bento-card:nth-child(4) {
    grid-row: span 2;
  }

  .bento-card:nth-child(2),
  .bento-card:nth-child(3) {
    grid-row: span 3;
  }
}

/* Servicios config */

.services-section {
  padding: 80px 0;
  background-color: var(--body-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-header p {
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #f7f6ed;
  border: 1px solid #e8e6df;
  border-radius: 12px;
  padding: 35px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 55px;
  height: 55px;
  background-color: #ece8cf;
  color: var(--secondary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary-color);
}

.service-card:hover .icon-box {
  background-color: var(--secondary-color);
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-font-color);
  line-height: 1.5;
  margin: 0;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Doctoras config */

.team-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.team-card {
  background-color: #fcfbf7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image-wrapper {
  position: relative;
  height: 380px;
  width: 100%;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.team-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(19, 35, 57, 0.95) 10%,
    rgba(19, 35, 57, 0.5) 70%,
    transparent
  );
  padding: 40px 30px 20px;
  display: flex;
  flex-direction: column;
}

.team-title-overlay h3 {
  color: #ffffff;
  margin: 0 0 4px 0;
  font-size: 1.4rem;
}

.team-title-overlay span {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.team-info {
  padding: 30px;
}

.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
}

.team-badge svg {
  color: var(--secondary-color);
}

.team-badge .badge-cedula {
  border: none;
  color: var(--title-font-color);
  font-weight: 600;
  padding: 8px 14px;
}

.badge-cedula svg {
  color: var(--title-font-color);
}

.badge-beige {
  background-color: #ece8cf;
}

.badge-mint {
  background-color: var(--light-green);
  color: #128277;
}

.badge-mint svg {
  color: #128277;
}

.badge-info {
  background-color: #f2f0e6;
}

.team-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 25px 0;
  color: var(--text-font-color);
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .team-image-wrapper {
    height: 320px;
  }
}

/* Contact config */

.contact-section {
  background-color: var(--hero-color);
  padding: 100px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-header p {
  color: var(--text-font-color);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

.contact-card .icon-box {
  background-color: var(--secondary-color);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-card p {
  color: var(--text-font-color);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.card-btn {
  display: block;
  text-align: center;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.card-btn:hover {
  opacity: 0.9;
}

.map-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-icon {
  color: var(--secondary-color);
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.map-icon h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.map-card p {
  color: var(--text-font-color);
  font-size: 1rem;
  margin-bottom: 30px;
}

.map-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.btn-teal {
  background-color: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.btn-teal:hover {
  opacity: 0.9;
}

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

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

/* Policies config */

.policies-section {
  background-color: var(--body-color);
  padding: 80px 0;
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.policy-card {
  background-color: #fbfaf6;
  border: 1px solid #e8e6df;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.policy-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e8e6df;
  padding-bottom: 20px;
}

.policy-icon {
  background-color: #ece8cf;
  color: var(--secondary-color);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-header h3 {
  font-size: 1.3rem;
  margin: 0;
}

.policy-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.policy-item-icon {
  color: var(--secondary-color);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-item-text h4 {
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--title-font-color);
  margin: 0 0 8px 0;
}

.policy-item-text p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

.policy-item-text strong {
  color: var(--hero-color);
}

.policy-alert {
  background-color: #f1efde;
  border: 1px solid #c0e8df;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.policy-alert svg {
  color: var(--secondary-color);
}

.policy-alert p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--title-font-color);
  font-weight: 500;
}

.policy-group {
  margin-bottom: 30px;
}

.policy-group:last-child {
  margin-bottom: 0;
}

.warning-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.warning-title svg {
  color: #d9534f;
}

.standard-title {
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--title-font-color);
  margin: 0 0 15px 0;
}

.policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-list strong {
  color: var(--title-font-color);
}

.policy-list.green-border,
.policy-list.red-border {
  border-left: none;
}

.policy-list.green-border li {
  border-left: 2px solid var(--secondary-color);
  padding-left: 15px;
}

.policy-list.red-border li {
  border-left: 2px solid #e8adaa;
  padding-left: 15px;
}

.policy-list li {
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .policies-grid {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
}

/* Aviso de Privacidad Config */
.privacy-section {
  background-color: var(--bg-cream);
  padding: 80px 0;
}

.privacy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-card {
  background-color: #fcfbf6;
  border-radius: 12px;
  padding: 35px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(22, 162, 134, 0.1);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.privacy-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.privacy-icon {
  width: 45px;
  height: 45px;
  background-color: var(--body-color);
  color: var(--secondary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-card-header h3 {
  font-size: 1.1rem;
  color: var(--hero-color);
  margin: 0;
}

.privacy-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-font-color);
  margin: 0 0 15px 0;
}

.privacy-card-body p:last-child {
  margin-bottom: 0;
}

.privacy-card-body strong {
  color: var(--hero-color);
}

.highlight-green {
  color: var(--secondary-color);
  font-weight: 500;
}

.privacy-card-body .list-title {
  color: var(--hero-color) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  margin-bottom: 10px;
}

.privacy-card-body ul {
  margin: 0 0 20px 0;
  padding-left: 20px;
  color: var(--text-font-color);
}

.privacy-card-body ul:last-child {
  margin-bottom: 0;
}

.privacy-card-body li {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 2px;
  list-style-type: disc;
}

.privacy-card-body .list-title {
  color: var(--hero-color);
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
}

.privacy-card-body .list-title:first-child {
  margin-top: 0;
}

.footer-card {
  padding: 25px 40px;
}

.update-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.update-info p {
  margin: 0;
  color: var(--text-font-color);
  font-size: 0.95rem;
}

.update-info svg {
  color: var(--secondary-color);
}

.update-badge {
  display: inline-block;
  background-color: var(--body-color);
  color: var(--hero-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-card,
  .footer-card {
    padding: 25px;
  }
}

/* FAQ Config */
.faq-section {
  background-color: var(--body-color);
  padding: 80px 0;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.faq-item {
  background-color: #fcfbf6;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary {
  list-style: none;
}

.faq-question {
  padding: 24px 30px;
  font-family: var(--title-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hero-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question .faq-icon {
  color: var(--hero-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-question:hover {
  color: var(--secondary-color);
}

.faq-question:hover .faq-icon {
  color: var(--secondary-color);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-item[open] .faq-answer {
  animation: smoothFade 0.4s ease-out forwards;
}

@keyframes smoothFade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer {
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-font-color);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-contact-card {
  background-color: #fcfbf6;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-contact-card p {
  color: var(--text-font-color);
  margin: 0 0 15px 0;
  font-size: 1rem;
  line-height: 1.5;
}

.faq-contact-card strong {
  color: var(--hero-color);
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1.05rem;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* Footer config */
.site-footer {
  background-color: var(--hero-color);
  color: #e0e6ed;
  padding: 80px 0 30px 0;
  font-family: var(--main-font);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 15px;
}

.footer-column h3 {
  font-family: var(--title-font);
  color: white;
  font-size: 1rem;
  margin-top: 25px;
  font-weight: 600;
}

.links-column a {
  color: var(--text-font-color);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.links-column a:hover {
  color: white;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.85rem;
  gap: 12px;
  color: var(--text-font-color);
  line-height: 1.5;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: white;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.footer-logo-text .brand-title {
  font-family: var(--title-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.footer-logo-text .brand-subtitle {
  font-family: var(--main-font);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-cofepris {
  font-size: 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  font-size: 0.75rem;
  color: var(--text-font-color);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-description,
.footer-cofepris,
.footer-logo-text,
.brand-subtitle {
  color: #c0cce0;
}

.email-link {
  word-break: break-all;
}

.footer-column svg {
  color: var(--secondary-color);
}

/* Responsive stuff */

@media (max-width: 850px) {
  /* Generals */
  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  h3 {
    font-size: 1.2rem;
  }

  .contact-list li {
    font-size: 0.8rem;
  }

  .footer-bottom,
  .footer-bottom p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  /* NavBar stuff */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 25px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #f5f2e5;
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .logo-title {
    font-size: 1.2rem;
  }
  .logo-subtitle {
    font-size: 0.5rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .header-actions .btn-primary {
    padding: 8px 14px;
    font-size: 0.85rem;
    gap: 0;
  }

  .header-actions .btn-primary svg {
    display: none;
  }

  .phone svg {
    width: 22px;
    height: 22px;
  }

  /* Footer stuff */

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-column.brand-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-list li {
    justify-content: center;
  }

  /* Hero stuff */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin: 0 auto 15px auto;
  }

  .hero-text p {
    margin: 0 auto 30px auto;
  }

  .cta-group {
    justify-content: center;
    flex-wrap: wrap;
  }

  .stats-row {
    justify-content: center;
  }

  .image-wrapper {
    margin: 0 auto;
    width: 90%;
  }

  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 85%;
    justify-content: center;
    padding: 12px 15px;
  }

  /* Nosotros stuff */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .bento-card strong {
    font-size: 3.5rem;
  }

  /* Contact stuff */
  .contact-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Aviso legal stuff */
  .privacy-card-header h3 {
    font-size: 1.1rem;
    margin: 0;
  }

  .privacy-card-body p,
  .privacy-card-body li,
  .list-title {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .privacy-card-body ul {
    padding-left: 20px;
    margin-top: 5px;
  }

  .update-info p {
    font-size: 0.85rem;
  }

  .update-badge {
    font-size: 0.75rem;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

  /* FAQ stuff */
  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .faq-answer p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .faq-contact-card {
    padding: 20px;
  }

  .faq-contact-card p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .faq-contact-card strong {
    font-size: 0.9rem;
  }
}
