/**
 * Custom styles for Ratti Theme
 */

/* =GENERAL
-------------------------------------------------------------- */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f7f8f8;
  color: #1f2d33;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  color: #2e4c5c;
}

/* =HEADER
-------------------------------------------------------------- */
.site-header {
  background-color: #f7f8f8;
  padding: 20px 0;
  border-bottom: 1px solid #d7dee2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  flex-shrink: 0;
}

.logo a {
  text-decoration: none;
}

.logo .brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #2e4c5c;
  margin: 0;
  transition: color 0.3s ease;
}

.logo a:hover .brand-name {
  color: #d07a63;
}

.logo .custom-logo-link {
  display: block;
  max-width: 200px;
}

.logo .site-logo {
  max-height: 150px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo .site-logo:hover {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-nav .nav-menu li {
  position: relative;
  margin: 0;
}

.main-nav .nav-menu li a {
  text-decoration: none;
  color: #2e4c5c;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  padding: 6px 8px;
  display: block;
  line-height: 1.4;
}

.main-nav .nav-menu li a:hover,
.main-nav .nav-menu li.current-menu-item a {
  color: #d07a63;
}

/* Submenú desplegable */
.main-nav .nav-menu li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1000;
}

.main-nav .nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .nav-menu li.open .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .nav-menu li.open > a {
  color: #d07a63;
}

.main-nav .nav-menu li .sub-menu li {
  display: block;
  margin: 0;
}

.main-nav .nav-menu li .sub-menu li a {
  padding: 12px 20px;
  color: #2e4c5c;
  font-size: 15px;
  white-space: nowrap;
}

.main-nav .nav-menu li .sub-menu li a:hover {
  background-color: #e9dccb;
  color: #d07a63;
}

/* Indicador de submenú */
.main-nav .nav-menu li.menu-item-has-children > a::after {
  content: " ▾";
  font-size: 12px;
  margin-left: 5px;
}

.btn-cotizar {
  background-color: #2e4c5c;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-left: 10px;
  display: inline-block;
  line-height: 1.4;
  white-space: nowrap;
  border: 1px solid #2e4c5c;
}

.btn-cotizar:hover {
  background-color: #d07a63;
  border-color: #d07a63;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(208, 122, 99, 0.25);
}

/* =FOOTER

/* =Hero Section
-------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-slide.active {
  opacity: 1;
}

/* Overlay degradado desde la izquierda */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(46, 76, 92, 0.95) 0%,
    rgba(46, 76, 92, 0.85) 40%,
    rgba(46, 76, 92, 0.4) 70%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
  padding: 60px;
  max-width: 700px;
  margin-left: 0;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  color: #fff;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  color: #f7f8f8;
}

.hero-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #2e4c5c;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2e4c5c;
  box-shadow: 0 4px 15px rgba(46, 76, 92, 0.35);
}

.hero-button:hover {
  background-color: #d07a63;
  color: #fff;
  border-color: #d07a63;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208, 122, 99, 0.45);
}

/* =Content Area
-------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* =Latest Posts Section
-------------------------------------------------------------- */
.latest-posts {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.latest-posts h2 {
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2e4c5c;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.post-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-item:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-item h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 1.5rem;
}

.post-item h3 a {
  color: #2e4c5c;
  text-decoration: none;
}

.post-item h3 a:hover {
  color: #d07a63;
}

.post-excerpt {
  padding: 0 20px;
  color: #666;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin: 20px;
  color: #2e4c5c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #d07a63;
}

/* =Responsive Design
-------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Header responsive */
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .logo .brand-name {
    font-size: 24px;
  }

  .main-nav .nav-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .main-nav .nav-menu li a {
    padding: 5px 6px;
    font-size: 13px;
  }

  /* Hero responsive */
  .hero-content {
    padding: 30px 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(46, 76, 92, 0.95) 0%,
      rgba(46, 76, 92, 0.85) 60%,
      rgba(46, 76, 92, 0.5) 100%
    );
  }

  .hero-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  /* Posts grid responsive */
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* =FOOTER
-------------------------------------------------------------- */
.site-footer {
  background-color: #2e4c5c;
  color: #f7f8f8;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d07a63;
  margin-bottom: 20px;
}

.footer-section p {
  margin: 10px 0;
  line-height: 1.8;
}

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

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a {
  color: #f7f8f8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #d07a63;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 248, 248, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(247, 248, 248, 0.8);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =HERO BUTTONS
-------------------------------------------------------------- */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-button.primary {
  background-color: #d07a63;
  color: #fff;
  border: 2px solid #d07a63;
}

.hero-button.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.hero-button.secondary:hover {
  background-color: #fff;
  color: #2e4c5c;
}

/* =BENEFITS SECTION
-------------------------------------------------------------- */
.benefits-section {
  padding: 80px 0;
  background-color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #2e4c5c;
  margin-bottom: 15px;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* =INCLUDES SECTION
-------------------------------------------------------------- */
.includes-section {
  padding: 80px 0;
  background-color: #f7f8f8;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  text-align: center;
  color: #2e4c5c;
  margin-bottom: 60px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.include-item {
  text-align: center;
  padding: 20px;
}

.include-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.include-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #2e4c5c;
  margin-bottom: 10px;
}

.include-item p {
  color: #666;
  font-size: 0.95rem;
}

/* =PLANS SECTION
-------------------------------------------------------------- */
.plans-section {
  padding: 80px 0;
  background-color: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border: 2px solid #dce6ea;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 76, 92, 0.15);
  border-color: #2e4c5c;
}

.plan-card.featured {
  border-color: #d07a63;
  box-shadow: 0 5px 20px rgba(208, 122, 99, 0.2);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d07a63;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #2e4c5c;
  margin-bottom: 10px;
}

.plan-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.plan-features li {
  padding: 12px 0;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
  border-bottom: none;
}

.btn-plan {
  display: inline-block;
  padding: 15px 40px;
  background-color: #2e4c5c;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #2e4c5c;
}

.btn-plan:hover {
  background-color: #d07a63;
  border-color: #d07a63;
  color: #fff;
  transform: translateY(-2px);
}

/* =HOW IT WORKS SECTION
-------------------------------------------------------------- */
.how-it-works {
  padding: 80px 0;
  background-color: #f7f8f8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #d07a63;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #2e4c5c;
  margin-bottom: 10px;
}

.step-item p {
  color: #666;
}

/* =FAQ SECTION
-------------------------------------------------------------- */
.faq-section {
  padding: 80px 0;
  background-color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.faq-item {
  background: #f7f8f8;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #d07a63;
}

.faq-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #2e4c5c;
  margin-bottom: 15px;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

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

.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: #2e4c5c;
  text-decoration: none;
  border: 2px solid #2e4c5c;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #2e4c5c;
  color: #fff;
}

/* =LEGAL SECTION
-------------------------------------------------------------- */
.legal-section {
  padding: 40px 0;
  background-color: #f7f8f8;
  border-top: 1px solid #dce6ea;
}

.legal-text {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.legal-text a {
  color: #2e4c5c;
  text-decoration: underline;
}

.legal-text a:hover {
  color: #d07a63;
}

/* =CONTACT CTA SECTION
-------------------------------------------------------------- */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2e4c5c 0%, #1f2d33 100%);
}

.contact-box {
  text-align: center;
  color: #fff;
}

.contact-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-box p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-whatsapp,
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: #20ba55;
  transform: scale(1.05);
}

.btn-phone {
  background-color: #fff;
  color: #2e4c5c;
}

.btn-phone:hover {
  background-color: #d07a63;
  color: #fff;
  transform: scale(1.05);
}

.whatsapp-icon,
.phone-icon {
  font-size: 1.5rem;
}

/* =ANIMACIONES FADE-UP
-------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =NUEVA SECCIÓN QUÉ INCLUYE TU COBERTURA
-------------------------------------------------------------- */
.coverage-includes-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-title-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 600;
  color: #2e4c5c;
  text-align: center;
  margin-bottom: 60px;
}

.coverage-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.coverage-card {
  background: linear-gradient(135deg, #e8eef1 0%, #f7f8f8 100%);
  border: 2px solid #dce6ea;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(46, 76, 92, 0.08);
}

.coverage-card-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.coverage-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #2e4c5c;
  margin: 0;
  line-height: 1.4;
}

/* =AUTOGESTIÓN 100% DIGITAL
-------------------------------------------------------------- */
.digital-section {
  padding: 80px 0;
  background-color: #f7f8f8;
}

.digital-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.digital-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: #2e4c5c;
  margin-bottom: 20px;
}

.digital-content p {
  font-size: 18px;
  color: #1f2d33;
  margin-bottom: 30px;
}

.btn-digital {
  display: inline-block;
  background-color: #2e4c5c;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #2e4c5c;
}

.btn-digital:hover {
  background-color: #d07a63;
  border-color: #d07a63;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 122, 99, 0.25);
}

/* =SALAS VELATORIAS
-------------------------------------------------------------- */
.salas-section {
  padding: 80px 0;
  background-color: #7fa4b2;
}

.salas-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.salas-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.salas-content p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}

.btn-salas {
  display: inline-block;
  background-color: #d07a63;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-salas:hover {
  background-color: #2e4c5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* =PREGUNTAS FRECUENTES (NUEVA)
-------------------------------------------------------------- */
.faq-section-new {
  padding: 80px 0;
  background-color: #f7f8f8;
}

.faq-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: #2e4c5c;
  margin-bottom: 20px;
}

.faq-content p {
  font-size: 18px;
  color: #1f2d33;
  margin-bottom: 30px;
}

.btn-faq {
  display: inline-block;
  background-color: #2e4c5c;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-faq:hover {
  background-color: #d07a63;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 76, 92, 0.2);
}

/* =NOS OCUPAMOS DE TODO
-------------------------------------------------------------- */
.care-section {
  padding: 80px 0;
  background-color: #e9dccb;
}

.care-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.care-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: #2e4c5c;
  margin-bottom: 20px;
}

.care-content p {
  font-size: 18px;
  color: #2e4c5c;
  margin-bottom: 30px;
}

.btn-care {
  display: inline-block;
  background-color: #2e4c5c;
  color: #fff;
  padding: 12px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-care:hover {
  background-color: #d07a63;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 76, 92, 0.2);
}

/* =CÓMO FUNCIONA EL ALTA
-------------------------------------------------------------- */
.signup-process-section {
  padding: 80px 0;
  background-color: #f7f8f8;
}

.section-intro {
  text-align: center;
  font-size: 19px;
  color: #1f2d33;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  max-width: 900px;
  margin: 0 auto 60px;
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step-number-large {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 700;
  color: #d07a63;
  line-height: 1;
  flex-shrink: 0;
  min-width: 100px;
}

.step-content {
  flex: 1;
  padding-top: 10px;
}

.step-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: #2e4c5c;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 17px;
  color: #1f2d33;
  line-height: 1.7;
  margin: 0;
}

.process-badge {
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badge-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.badge-text {
  font-size: 19px;
  font-weight: 600;
  color: #2e4c5c;
  margin: 0;
}

.process-final {
  text-align: center;
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-final h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: #2e4c5c;
  margin-bottom: 20px;
}

.process-final p {
  font-size: 18px;
  color: #1f2d33;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-process {
  display: inline-block;
  background-color: #2e4c5c;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
}

.btn-process:hover {
  background-color: #d07a63;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 76, 92, 0.2);
}

/* =RESPONSIVE
-------------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-button {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .benefits-grid,
  .includes-grid,
  .plans-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .btn-whatsapp,
  .btn-phone {
    width: 100%;
    justify-content: center;
  }

  /* Nuevas secciones responsive */
  .section-title-main {
    font-size: 36px;
  }

  .coverage-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .coverage-card {
    padding: 35px 20px;
  }

  .coverage-card-icon {
    font-size: 56px;
  }

  .coverage-card h4 {
    font-size: 17px;
  }

  .digital-content h2,
  .salas-content h2,
  .faq-content h2,
  .care-content h2 {
    font-size: 32px;
  }

  .digital-content p,
  .salas-content p,
  .faq-content p,
  .care-content p {
    font-size: 16px;
  }

  /* Proceso de alta responsive */
  .section-intro {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .process-step {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
  }

  .step-number-large {
    font-size: 56px;
    min-width: auto;
  }

  .step-content h3 {
    font-size: 24px;
  }

  .step-content p {
    font-size: 16px;
  }

  .process-badge {
    padding: 25px 20px;
  }

  .badge-icon {
    font-size: 40px;
  }

  .badge-text {
    font-size: 17px;
  }

  .process-final {
    padding: 35px 25px;
  }

  .process-final h3 {
    font-size: 28px;
  }

  .process-final p {
    font-size: 16px;
  }
}

/* =PÁGINAS DE PLANES
-------------------------------------------------------------- */
.plan-page {
  background-color: #f7f8f8;
}

/* Hero del Plan */
.plan-hero {
  background: linear-gradient(135deg, #2e4c5c 0%, #3d6175 100%);
  padding: 100px 0 80px;
  text-align: center;
}

.plan-hero-familiar {
  background: linear-gradient(135deg, #d07a63 0%, #e89580 100%);
}

.plan-hero-empresa {
  background: linear-gradient(135deg, #2e4c5c 0%, #1f3440 100%);
}

.plan-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.plan-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.plan-subtitle {
  font-size: 22px;
  color: #fff;
  margin-bottom: 35px;
  opacity: 0.95;
}

.btn-plan-cta {
  display: inline-block;
  background-color: #2e4c5c;
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid #2e4c5c;
  box-shadow: 0 6px 18px rgba(46, 76, 92, 0.25);
}

.btn-plan-cta:hover {
  background-color: #d07a63;
  border-color: #d07a63;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(208, 122, 99, 0.3);
}

/* Resumen del Plan */
.plan-summary {
  padding: 60px 0;
  background-color: #fff;
}

.summary-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.summary-content p {
  font-size: 19px;
  line-height: 1.8;
  color: #1f2d33;
  margin-bottom: 15px;
}

.summary-content strong {
  color: #2e4c5c;
  font-weight: 700;
}

/* Qué Incluye */
.plan-includes {
  padding: 80px 0;
  background-color: #f7f8f8;
}

.section-title-plan {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: #2e4c5c;
  text-align: center;
  margin-bottom: 50px;
}

.includes-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.include-item-plan {
  background-color: #fff;
  padding: 20px 25px;
  border-left: 4px solid #d07a63;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.check-icon {
  font-size: 24px;
  color: #d07a63;
  font-weight: 700;
  flex-shrink: 0;
}

.include-item-plan p {
  margin: 0;
  font-size: 17px;
  color: #1f2d33;
  line-height: 1.5;
}

/* Condiciones */
.plan-conditions {
  padding: 80px 0;
  background-color: #e9dccb;
}

.conditions-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
}

.bullet {
  font-size: 28px;
  color: #2e4c5c;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.condition-item p {
  margin: 0;
  font-size: 17px;
  color: #2e4c5c;
  line-height: 1.6;
}

/* Mensaje Final */
.plan-final-message {
  padding: 80px 0;
  background: linear-gradient(135deg, #2e4c5c 0%, #3d6175 100%);
  text-align: center;
}

.final-message-content {
  max-width: 800px;
  margin: 0 auto;
}

.message-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 35px;
}

.btn-plan-cta-secondary {
  display: inline-block;
  background-color: #2e4c5c;
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid #2e4c5c;
}

.btn-plan-cta-secondary:hover {
  background-color: #d07a63;
  border-color: #d07a63;
  color: #fff;
  transform: translateY(-3px);
}

/* =PÁGINA DE PREGUNTAS FRECUENTES
-------------------------------------------------------------- */
.faq-page {
  background-color: #f7f8f8;
}

.faq-hero {
  background: linear-gradient(135deg, #2e4c5c 0%, #3d6175 100%);
  padding: 80px 0;
  text-align: center;
}

.faq-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.faq-subtitle {
  font-size: 20px;
  color: #fff;
  opacity: 0.95;
}

.faq-content-section {
  padding: 80px 0;
}

.faq-category {
  max-width: 900px;
  margin: 0 auto 60px;
}

.faq-category-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #d07a63;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d07a63;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2e4c5c;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #d07a63;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: #d07a63;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 25px 25px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #1f2d33;
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.faq-answer ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2d33;
}

.faq-answer ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d07a63;
  font-weight: 700;
  font-size: 20px;
}

.faq-answer strong {
  color: #2e4c5c;
  font-weight: 700;
}

.faq-cta-box {
  max-width: 700px;
  margin: 80px auto 0;
  text-align: center;
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  color: #2e4c5c;
  margin-bottom: 15px;
}

.faq-cta-box p {
  font-size: 18px;
  color: #1f2d33;
  margin-bottom: 30px;
}

.btn-faq-cta {
  display: inline-block;
  background-color: #d07a63;
  color: #fff;
  padding: 14px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
}

.btn-faq-cta:hover {
  background-color: #2e4c5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 122, 99, 0.3);
}

/* Responsive para páginas de planes */
@media (max-width: 768px) {
  .plan-hero {
    padding: 60px 0 50px;
  }

  .plan-title {
    font-size: 38px;
  }

  .plan-subtitle {
    font-size: 18px;
  }

  .btn-plan-cta,
  .btn-plan-cta-secondary {
    padding: 14px 30px;
    font-size: 16px;
  }

  .summary-content p {
    font-size: 17px;
  }

  .section-title-plan {
    font-size: 32px;
  }

  .include-item-plan {
    padding: 15px 20px;
  }

  .include-item-plan p,
  .condition-item p {
    font-size: 16px;
  }

  .message-text {
    font-size: 24px;
  }

  /* FAQ responsive */
  .faq-main-title {
    font-size: 38px;
  }

  .faq-subtitle {
    font-size: 18px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-icon {
    font-size: 24px;
    margin-left: 15px;
  }

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

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

  .faq-answer p,
  .faq-answer ul li {
    font-size: 15px;
  }

  .faq-cta-box {
    padding: 35px 25px;
  }

  .faq-cta-box h3 {
    font-size: 26px;
  }

  .faq-cta-box p {
    font-size: 16px;
  }

  /* Submenú responsive */
  .main-nav .nav-menu li .sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: none;
    padding: 5px 0 5px 20px;
    background-color: transparent;
  }

  .main-nav .nav-menu li .sub-menu li a {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* ==========================================================================
   PÁGINA SOBRE NOSOTROS
   ========================================================================== */

/* Hero Section */
.nosotros-hero {
  background: linear-gradient(135deg, #2e4c5c 0%, #3d6075 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: #ffffff;
}

.nosotros-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.nosotros-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
}

/* Story Section */
.nosotros-story {
  padding: 80px 0;
  background-color: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.story-content {
  max-width: 700px;
}

.story-block {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.story-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-intro {
  font-size: 20px;
  line-height: 1.8;
  color: #2e4c5c;
  font-weight: 500;
  margin-bottom: 0;
}

.story-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: #2e4c5c;
  margin: 0 0 20px;
}

.story-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #1f2d33;
  margin-bottom: 0;
}

.highlight-box {
  background: linear-gradient(135deg, #f7f8f8 0%, #e8eef1 100%);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid #d07a63;
  margin-top: 50px;
}

.story-highlight {
  font-size: 20px;
  line-height: 1.8;
  color: #2e4c5c;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

/* Image Gallery */
.story-images {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 100px;
}

.image-box {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.image-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.story-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.image-caption {
  font-size: 14px;
  color: #687980;
  text-align: center;
  margin: 12px 0 0;
  font-style: italic;
}

/* Values Section */
.nosotros-values {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f8f8 0%, #e8eef1 100%);
}

.values-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #2e4c5c;
  text-align: center;
  margin: 0 0 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.values-title.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.value-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #d07a63 0%, #c86a53 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.value-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: #2e4c5c;
  margin: 0 0 15px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #687980;
  margin: 0;
}

/* CTA Section */
.nosotros-cta {
  padding: 80px 0;
  background-color: #ffffff;
}

.nosotros-cta .cta-box {
  background: linear-gradient(135deg, #2e4c5c 0%, #3d6075 100%);
  padding: 60px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.nosotros-cta .cta-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.nosotros-cta .cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 15px;
}

.nosotros-cta .cta-box p {
  font-size: 18px;
  margin: 0 0 30px;
  opacity: 0.9;
}

.btn-nosotros-cta {
  display: inline-block;
  background-color: #d07a63;
  color: #ffffff;
  padding: 16px 45px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-nosotros-cta:hover {
  background-color: #c86a53;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(208, 122, 99, 0.3);
}

/* =Cotiza tu plan
-------------------------------------------------------------- */
.cotiza-page {
  background: #f7f8f8;
  color: #2e4c5c;
}

.cotiza-hero {
  padding: 80px 0 40px;
}

.cotiza-hero .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.cotiza-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d07a63;
  font-weight: 600;
  margin: 0 0 10px;
}

.cotiza-hero h1 {
  font-size: 52px;
  margin: 0 0 14px;
}

.cotiza-hero .hero-lead {
  max-width: 820px;
  font-size: 18px;
  color: #1f2d33;
  margin: 0;
}

.plans-section {
  padding: 30px 0 60px;
}

.plans-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.plan-card {
  background: #ffffff;
  border: 1px solid #e4e7eb;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-card.featured {
  border-color: #d07a63;
  box-shadow: 0 14px 32px rgba(208, 122, 99, 0.16);
  position: relative;
}

.plan-card.featured::before {
  content: "Recomendado";
  position: absolute;
  top: -12px;
  right: 16px;
  background: #d07a63;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.plan-head .plan-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2e4c5c;
  margin: 0 0 6px;
  font-weight: 600;
}

.plan-head h2 {
  margin: 0;
  font-size: 30px;
}

.plan-price {
  margin: 8px 0 0;
  font-size: 18px;
  color: #d07a63;
  font-weight: 700;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-features li {
  padding-left: 20px;
  position: relative;
  color: #1f2d33;
}

.plan-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2e4c5c;
  font-weight: 700;
}

.plan-actions {
  margin-top: auto;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #d07a63;
  color: #ffffff;
  border-color: #d07a63;
}

.btn-primary:hover {
  background: #2e4c5c;
  border-color: #2e4c5c;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #2e4c5c;
  border-color: #2e4c5c;
}

.btn-secondary:hover {
  background: #e9dccb;
  transform: translateY(-2px);
}

.cotiza-form-section {
  padding: 30px 0 100px;
}

.cotiza-form-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-card {
  background: #ffffff;
  border: 1px solid #e4e7eb;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.form-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d07a63;
  font-weight: 600;
  margin: 0 0 6px;
}

.form-header h2 {
  margin: 0 0 10px;
  font-size: 32px;
}

.form-header .note {
  margin: 0 0 20px;
  color: #1f2d33;
  font-size: 14px;
  background: #f7f8f8;
  border-left: 4px solid #d07a63;
  padding: 10px 12px;
  border-radius: 6px;
}

.cotiza-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: #2e4c5c;
}

.form-grid label span {
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dce6ea;
  font-size: 15px;
  color: #1f2d33;
  background: #fdfdfd;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: #d07a63;
  box-shadow: 0 0 0 3px rgba(208, 122, 99, 0.18);
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1f2d33;
}

.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #d07a63;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-images {
    position: relative;
    top: 0;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
  }

  .image-box {
    min-width: 300px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .cotiza-hero {
    padding: 60px 0 30px;
  }

  .cotiza-hero h1 {
    font-size: 38px;
  }

  .plan-card {
    padding: 22px;
  }

  .form-card {
    padding: 24px;
  }

  .form-actions {
    flex-direction: column;
  }

  .nosotros-hero {
    padding: 70px 0 50px;
  }

  .nosotros-main-title {
    font-size: 40px;
  }

  .nosotros-subtitle {
    font-size: 17px;
  }

  .nosotros-story {
    padding: 50px 0;
  }

  .story-intro {
    font-size: 18px;
  }

  .story-block h2 {
    font-size: 28px;
  }

  .story-block p {
    font-size: 16px;
  }

  .highlight-box {
    padding: 30px 25px;
  }

  .story-highlight {
    font-size: 18px;
  }

  .story-images {
    flex-direction: column;
  }

  .image-box {
    min-width: 100%;
  }

  .nosotros-values {
    padding: 50px 0;
  }

  .values-title {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 35px 25px;
  }

  .nosotros-cta {
    padding: 50px 0;
  }

  .nosotros-cta .cta-box {
    padding: 40px 25px;
  }

  .nosotros-cta .cta-box h2 {
    font-size: 30px;
  }

  .nosotros-cta .cta-box p {
    font-size: 16px;
  }
}

/* =WOOCOMMERCE: Thank You Page (Pedido Recibido)
-------------------------------------------------------------- */
/* Centrar y estilizar título de WooCommerce */
.woocommerce .entry-title {
  display: none !important;
}

/* Nuevo título de orden (generado por nuestro hook) */
.ratti-thankyou-order-title {
  text-align: center;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  color: #2e4c5c;
  font-size: 28px;
  font-weight: 700;
}

/* Centrar contenedor entry-header */
.woocommerce .entry-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Centrar contenido principal */
.woocommerce {
  max-width: 100%;
  margin: 0 auto;
}

.woocommerce .site-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Centrar main de WooCommerce */
.woocommerce .site-main {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Centrar artículo completo */
.woocommerce article {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  display: block;
}

/* Centrar contenido del artículo */
.woocommerce .entry-content {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.woocommerce main {
  max-width: 900px;
  margin: 0 auto;
}

.ratti-thankyou-card {
  background: white;
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 30px 40px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ratti-thankyou-content {
  text-align: center;
}

.ratti-thankyou-title {
  color: #2e4c5c;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.ratti-thankyou-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.ratti-thankyou-email {
  background: #f0f9f4;
  border-left: 4px solid #28a745;
  padding: 15px;
  border-radius: 4px;
  margin: 20px 0;
  text-align: left;
}

.ratti-thankyou-email strong {
  display: block;
  color: #2e4c5c;
  margin-bottom: 8px;
  font-size: 14px;
}

.ratti-thankyou-email p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.ratti-thankyou-account-text {
  font-size: 15px;
  color: #555;
  margin: 20px 0;
  line-height: 1.6;
}

.ratti-thankyou-btn {
  display: inline-block;
  background: #28a745;
  color: white !important;
  padding: 16px 50px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

@media (max-width: 768px) {
  .woocommerce .entry-title {
    display: none !important;
  }

  .ratti-thankyou-order-title {
    font-size: 22px;
    margin: 25px 15px;
    padding: 0 15px;
  }

  .woocommerce article {
    padding: 0 15px;
  }

  .ratti-thankyou-card {
    padding: 20px 25px;
    margin: 15px 15px;
    max-width: 100%;
  }

  .ratti-thankyou-title {
    font-size: 22px;
    margin-bottom: 25px;
    max-width: 100%;
    padding: 0 15px;
  }

  .ratti-thankyou-intro {
    font-size: 14px;
  }

  .ratti-thankyou-account-text {
    font-size: 14px;
  }

  .ratti-thankyou-btn {
    width: 100%;
    padding: 14px 30px;
  }
}

/* =WOOCOMMERCE: Centrar contenido después del pago
-------------------------------------------------------------- */
.woocommerce-notice {
  max-width: 900px;
  margin: 20px auto;
}

.woocommerce-order-details {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
}

.woocommerce-order-details table {
  width: 100%;
  border-collapse: collapse;
}

/* Order info section */
.woocommerce .woocommerce-order {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
}

.woocommerce table.shop_table {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
}

/* Order heading */
h2.woocommerce-order-details__title,
.woocommerce-order-details h2 {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Order info table cells */
.woocommerce-order-details th,
.woocommerce-order-details td {
  padding: 12px;
  text-align: left;
}

.woocommerce-order-details th {
  background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce-order-details,
  .woocommerce-order-details table {
    max-width: 100%;
    padding: 0 15px;
  }

  h2.woocommerce-order-details__title,
  .woocommerce-order-details h2 {
    padding: 0 15px;
  }
}
