/* ==================== RESET ==================== */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* ==================== VARIABLES ÚTILES ==================== */
:root{
  /* colores base del sitio */
  --rose: #936757;              
  --text-dark: #374151;
  --text-soft: #4b5563;

  /* badges (bolitas) */
  --badge-size: 64px;           
  --badge-shadow: 0 10px 24px rgba(0,0,0,.18), 0 4px 10px rgba(0,0,0,.08);
  --icon-tint: #c2769f;         

  /* padding del panel derecho de TRATAMENTOS */
  --content-pad-left: 64px;
}

/* ==================== HERO / HEADER ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute; 
  inset: 0;
  background-image: url('/assets/img/logo/logo_con-fondo.jpg');
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(0,0,0,.2); 
}

/* Navigation styles (matching original design) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #d4af37;
}

.logo-container img {
  height: 50px;
  width: auto;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.mobile-menu.active {
  display: block;
}

/* HERO content */
.hero-content{
  position:relative; 
  z-index:10; 
  display:flex; 
  align-items:center; 
  justify-content:center;
  min-height: calc(100vh - 100px); 
  text-align:center; 
  color:#fff; 
  padding:0 24px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle{ 
  font-size:14px; 
  font-weight:300; 
  letter-spacing:.2em; 
  margin-bottom:16px; 
  opacity:.9; 
}

.hero-title{ 
  font-size:4rem; 
  font-weight:300; 
  letter-spacing:.05em; 
}

.hero-title span{ 
  font-weight:400; 
}

/* ==================== SECCIÓN TRATAMENTOS ==================== */
.tratamentos-section{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  width: 100%;
}

.tratamentos-image{
  background-image: url('/assets/img/lateral2.jpg');
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.tratamentos-content{
  background: #65150A; 
  padding: 80px 64px 80px var(--content-pad-left);
  position: relative;
}

.tratamentos-title{
  font-size: 3rem; 
  font-weight:700; 
  color:#fff; 
  margin-bottom:48px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

/* --------- Ítems --------- */
.treatment-item{
  position: relative;
  margin-bottom: 48px;
  padding-left: calc(var(--badge-size) / 2 + 24px);
  cursor: pointer;
  border-radius: 12px;
  transform: translateY(0) scale(1);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
  will-change: transform;
}

.treatment-item:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--badge-shadow);
}

.treatment-icon{
  position: absolute;
  top: 0;
  left: calc(-1 * var(--content-pad-left) - (var(--badge-size) / 2));
  width: var(--badge-size);
  height: var(--badge-size);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--badge-shadow);
  display: grid;
  place-items: center;
  z-index: 2;
}

.treatment-icon img{
  width: 60%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.treatment-item:hover .treatment-icon img {
  transform: scale(1.12);
}

.treatment-content h3{
  font-size: 20px; 
  font-weight:700; 
  color:#fff; 
  margin-bottom:12px; 
  letter-spacing:.06em;
  display: inline-block;
  transform: scale(1);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.treatment-item:hover h3 {
  transform: scale(1.04);
}

.treatment-content p{
  color:#fff; 
  opacity:.92; 
  line-height:1.7; 
  font-size:14px;
  display: inline-block;
  transform: scale(1);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.treatment-item:hover p {
  transform: scale(1.02);
}

.treatment-link {
  text-decoration: none;
  color: inherit;
}

/* ==================== SECCIÓN ABOUT ==================== */
.about-section{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  width: 100%;
}

.about-content{
  flex:1; 
  padding:80px 64px; 
  display:flex; 
  flex-direction:column; 
  justify-content:center;
}

.about-title{ 
  font-size:3rem; 
  font-weight:700; 
  color: #65150A; 
  margin-bottom:24px;
}

.about-credentials{ 
  color:#6b7280; 
  font-size:14px; 
  font-weight:500; 
  margin-bottom:24px; 
}

.about-text{ 
  color:#4b5563; 
  line-height:1.6; 
  margin-bottom:24px; 
}

.about-btn{
  display:inline-flex; 
  align-items:center; 
  justify-content:center; 
  padding:12px 32px;
  border:2px solid #65150A; 
  color: #65150A; 
  font-weight:500; 
  font-size:14px;
  letter-spacing:.05em; 
  text-decoration:none; 
  border-radius:50px; 
  transition:.3s; 
  margin-top:32px; 
  width:fit-content;
}

.about-btn:hover{ 
  background: #65150A; 
  color:#fff; 
}

.about-image{
  display:flex;
  justify-content:center;
  align-items:center;
  background:#fff;
  padding:40px;
  min-height:400px;
}

.about-image img{
  max-width:60%;
  height:auto;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.1);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  background: white;
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ==================== LEFT SIDE - CONTACT INFO ==================== */
.contact-info {
  color: #65150A;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight:700;
}

.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 48px;
  font-weight: 300;
}

.contact-details {
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #65150A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-text p {
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.contact-text a,
.contact-text a:visited {
  color: inherit;
  text-decoration: none;
}

.contact-text a:hover,
.contact-text a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-link {
  border-bottom: 1px dashed rgba(101, 21, 10, 0.35);
  padding-bottom: 1px;
}

.map-link:hover,
.map-link:focus-visible {
  border-bottom-color: transparent;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: white;
  color: #65150A;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* ==================== RIGHT SIDE - CONTACT FORM ==================== */
.contact-form-container {
  background: #65150A;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: white;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid black;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #374151;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: black;
  box-shadow: 0 0 0 3px rgba(101, 21, 10, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: #4a0f07;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: #4a0f07;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(101, 21, 10, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
  background: #65150A;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* ==================== FOOTER BRAND ==================== */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
  background: white;
  color: #65150A;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

/* ==================== FOOTER LINKS ==================== */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: white;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: white;
  opacity: 0.6;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  opacity: 1;
  color: white;
  transform: translateX(4px);
}

/* ==================== FOOTER CONTACT ==================== */
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: white;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ==================== AIRES-SOFT CREDIT ==================== */
.aires-soft-credit {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  text-align: center;
}

.aires-soft-credit p {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}

.aires-soft-credit a {
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(
      90deg,
      rgb(0,115,229),
      #fff,
      rgb(0,115,229)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 3s linear infinite;
  background-size: 200% auto;
}

@keyframes textGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==================== BOTÓN WHATSAPP ==================== */
.whatsapp-btn{
  position:fixed; 
  bottom:24px; 
  right:24px; 
  width:56px; 
  height:56px; 
  background:#25d366; 
  border-radius:50%;
  display:flex; 
  align-items:center; 
  justify-content:center; 
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  transition:background-color .3s; 
  z-index:50; 
  text-decoration:none;
}

.whatsapp-btn:hover{ 
  background:#128c7e; 
}

.whatsapp-btn svg{ 
  width:32px; 
  height:32px; 
  color:#fff; 
}

/* ==================== ANIMACIONES ==================== */
@keyframes fadeInUp{ 
  from{opacity:0; transform:translateY(30px);} 
  to{opacity:1; transform:none;} 
}

@keyframes fadeInLeft{ 
  from{opacity:0; transform:translateX(-30px);} 
  to{opacity:1; transform:none;} 
}

.treatment-item{ 
  animation: fadeInLeft .6s ease-out both; 
}

.treatment-item:nth-child(2){ 
  animation-delay:.2s; 
}

.treatment-item:nth-child(3){ 
  animation-delay:.4s; 
}

.treatment-item:nth-child(4){ 
  animation-delay:.6s; 
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .navbar { 
      padding: 24px 32px; 
  }
  
  .hero-title { 
      font-size: 3.5rem; 
  }
  
  .tratamentos-content, 
  .about-content { 
      padding: 60px 48px; 
  }
  
  .contact-container {
      padding: 0 32px;
      gap: 60px;
  }
  
  .footer-container {
      padding: 60px 32px 0;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .navbar { 
      padding: 24px; 
  }
  
  .nav-menu { 
      display: none; 
  }
  
  .mobile-menu-btn { 
      display: block; 
  }
  
  .hero-title { 
      font-size: 3rem; 
  }

  /* Stack sections vertically */
  .tratamentos-section, 
  .about-section { 
      grid-template-columns: 1fr; 
  }

  .tratamentos-content, 
  .about-content { 
      padding: 48px 32px; 
  }
  
  .tratamentos-title, 
  .about-title { 
      font-size: 2.5rem; 
  }

  /* Mobile badge positioning */
  .treatment-item { 
      padding-left: calc(var(--badge-size) / 2 + 20px); 
  }
  
  .treatment-icon {
      left: calc(-1 * (var(--badge-size) / 2));
  }
  
  .contact-container {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 0 32px;
  }
  
  .contact-title {
      font-size: 2.5rem;
  }
  
  .footer-container {
      padding: 60px 32px 0;
  }
  
  .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
  }
  
  .footer-brand {
      max-width: none;
  }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
  .navbar {
      padding: 16px 20px;
      height: 80px;
  }
  
  .logo-container img {
      max-height: 50px;
  }
  
  .hero-content {
      min-height: calc(100vh - 80px);
      padding: 0 20px;
  }
  
  .hero-title { 
      font-size: 2.5rem; 
  }
  
  .hero-subtitle {
      font-size: 12px;
  }
  
  .tratamentos-content, 
  .about-content { 
      padding: 32px 24px; 
  }
  
  .tratamentos-title, 
  .about-title { 
      font-size: 2rem; 
  }

  .treatment-item { 
      margin-bottom: 32px; 
  }
  
  .treatment-icon { 
      width: 56px; 
      height: 56px; 
  }
  
  .treatment-content h3 {
      font-size: 18px;
  }
  
  .treatment-content p {
      font-size: 13px;
  }
  
  .about-image {
      padding: 20px;
  }
  
  .about-image img {
      max-width: 80%;
  }
  
  .contact-section {
      padding: 48px 0;
  }
  
  .contact-container {
      padding: 0 24px;
      gap: 32px;
  }
  
  .contact-title {
      font-size: 2rem;
  }
  
  .contact-form-container {
      padding: 32px 24px;
  }
  
  .form-row {
      grid-template-columns: 1fr;
      gap: 0;
  }
  
  .contact-item {
      padding: 20px;
  }
  
  .contact-icon {
      width: 40px;
      height: 40px;
  }
  
  .contact-icon svg {
      width: 20px;
      height: 20px;
  }
  
  .footer-container {
      padding: 48px 24px 0;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: center;
  }
  
  .footer-brand {
      text-align: center;
  }
  
  .footer-social {
      justify-content: center;
  }
  
  .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .footer-menu a:hover {
      transform: none;
  }
  
  .footer-contact-item {
      justify-content: center;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .navbar {
      padding: 12px 16px;
      height: 70px;
  }
  
  .logo-container img {
      max-height: 40px;
  }
  
  .hero-content {
      min-height: calc(100vh - 70px);
      padding: 0 16px;
  }
  
  .hero-title {
      font-size: 2rem;
      line-height: 1.2;
  }
  
  .hero-subtitle {
      font-size: 11px;
      margin-bottom: 12px;
  }
  
  .tratamentos-content,
  .about-content {
      padding: 24px 16px;
  }
  
  .tratamentos-title,
  .about-title {
      font-size: 1.75rem;
      margin-bottom: 32px;
  }
  
  .treatment-item {
      margin-bottom: 24px;
      padding-left: calc(var(--badge-size) / 2 + 16px);
  }
  
  .treatment-icon {
      width: 48px;
      height: 48px;
  }
  
  .treatment-content h3 {
      font-size: 16px;
      margin-bottom: 8px;
  }
  
  .treatment-content p {
      font-size: 12px;
      line-height: 1.5;
  }
  
  .about-text {
      font-size: 14px;
      margin-bottom: 16px;
  }
  
  .about-btn {
      padding: 10px 24px;
      font-size: 12px;
  }
  
  .contact-section {
      padding: 32px 0;
  }
  
  .contact-container {
      padding: 0 16px;
      gap: 24px;
  }
  
  .contact-title {
      font-size: 1.75rem;
  }
  
  .contact-subtitle {
      font-size: 1rem;
      margin-bottom: 32px;
  }
  
  .contact-form-container {
      padding: 24px 16px;
  }
  
  .contact-item {
      flex-direction: column;
      text-align: center;
      gap: 16px;
      padding: 16px;
  }
  
  .contact-text h4 {
      font-size: 1rem;
  }
  
  .contact-text p {
      font-size: 0.9rem;
  }
  
  .form-group label {
      font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
      padding: 10px 12px;
      font-size: 0.9rem;
  }
  
  .submit-btn {
      padding: 14px 24px;
      font-size: 1rem;
  }
  
  .footer-container {
      padding: 32px 16px 0;
  }
  
  .footer-content {
      gap: 24px;
  }
  
  .footer-logo {
      height: 50px;
  }
  
  .footer-description {
      font-size: 0.9rem;
  }
  
  .aires-soft-credit p {
      font-size: 0.8rem;
      padding: 0 16px;
  }
  
  .whatsapp-btn {
      width: 50px;
      height: 50px;
      bottom: 16px;
      right: 16px;
  }
  
  .whatsapp-btn svg {
      width: 28px;
      height: 28px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .hero-title {
      font-size: 1.75rem;
  }
  
  .tratamentos-title,
  .about-title,
  .contact-title {
      font-size: 1.5rem;
  }
  
  .treatment-item {
      padding-left: calc(var(--badge-size) / 2 + 12px);
  }
  
  .treatment-icon {
      width: 40px;
      height: 40px;
  }
  
  .treatment-content h3 {
      font-size: 14px;
  }
  
  .treatment-content p {
      font-size: 11px;
  }
  
  .contact-form-container {
      padding: 20px 12px;
  }
  
  .footer-container {
      padding: 24px 12px 0;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  .treatment-item,
  .footer-social-link:hover,
  .footer-menu a:hover,
  .treatment-item:hover,
  .contact-item:hover {
      transform: none;
      animation: none;
  }
  
  .aires-soft-credit a {
      animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-overlay {
      background: rgba(0,0,0,.5);
  }
  
  .treatment-icon {
      border: 2px solid #000;
  }
  
  .contact-item {
      border: 1px solid rgba(0,0,0,.2);
  }
}

/* Print styles */
@media print {
  .whatsapp-btn,
  .mobile-menu-btn,
  .mobile-menu {
      display: none !important;
  }
  
  .hero-section {
      min-height: auto;
      page-break-after: always;
  }
  
  .footer-section {
      page-break-before: always;
  }
}