/* ============================================
   CRITICAL CSS - Above the fold
   ============================================ */

/* Variables CSS */
:root {
  --primary-color: #F4940C;
  --primary-hover: #d17a09;
  --primary-light: rgba(244, 148, 12, 0.1);
  --primary-shadow: rgba(244, 148, 12, 0.3);
  --text-color: #333;
  --bg-light: #f8f9fa;
  --success-color: #28a745;
  /* New design colors */
  --dark-blue: #1E2D51;
  --dark-blue-bg: #1E2D51;
  --teal: #23C4B5;
  --teal-light: #e2f8f3;
  --pink: #DE2F73;
  --yellow: #ffd93d;
  --gray-light: #f4f6f9;
  --gray-dark: #7D8DA3;
}

/* Reset y configuración base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo img {
  height: 60px;
  width: auto;
}

.logo-link img {
  max-width: 150px;
  width: auto;
}

/* Navegación Desktop */
.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: var(--pink);
}

/* Menú hamburguesa */
.hamburger-menu {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-icon {
  width: 25px;
  height: 20px;
  position: relative;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  position: absolute;
  left: 0;
  border-radius: 2px;
}

.hamburger-icon span:nth-child(1) {
  top: 0;
}

.hamburger-icon span:nth-child(2) {
  top: 8px;
}

.hamburger-icon span:nth-child(3) {
  top: 16px;
}

/* Navegación móvil */
.nav-mobile {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-mobile ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.nav-mobile li {
  margin-bottom: 15px;
}

.nav-mobile a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.nav-mobile a:hover {
  color: var(--primary-color);
}

.nav-mobile a.active {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-style: solid;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -90px;
  /* Compensar el header fijo */
  padding-top: 90px;
  /* Agregar padding para el header */
}

/* Botones */
.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #F4940C;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background: #d17a09;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 148, 12, 0.3);
}

/* Secciones */
.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: var(--bg-light);
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #F4940C;
  font-family: 'Montserrat', sans-serif;
}

/* Grid Layouts */
/* (removed unused: .grid, .features, .feature, .video-grid, .video-container) */

/* Formulario de contacto */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F4940C;
  box-shadow: 0 0 0 3px rgba(244, 148, 12, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 40px 0 20px;
}

.youtube-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Loading animation */
.loading {
  display: none;
  text-align: center;
  padding: 20px;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #F4940C;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {

  /* Ocultar navegación desktop en móvil */
  .nav-desktop {
    display: none;
  }

  /* Mostrar menú hamburguesa */
  .hamburger-menu {
    display: block;
  }

  /* Mostrar navegación móvil (controlado por JS) */
}

@media (max-width: 480px) {
  .characteristics-grid {
    gap: 25px;
    padding: 0 10px;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .characteristic-item {
    padding: 18px 0;
    gap: 15px;
    align-items: flex-start;
    grid-column: auto;
    grid-row: auto;
  }

  .characteristic-top-left,
  .characteristic-middle-left,
  .characteristic-bottom-left,
  .characteristic-top-right,
  .characteristic-middle-right,
  .characteristic-bottom-right,
  .characteristic-bottom-center {
    padding: 18px 0;
    gap: 15px;
    align-items: flex-start;
    grid-column: auto;
    grid-row: auto;
  }

  .characteristic-center {
    grid-column: auto;
    grid-row: auto;
  }

  .characteristic-text {
    font-size: 0.95rem;
    line-height: 1.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .characteristic-icon {
    width: 45px;
    height: 45px;
    margin-top: 2px;
  }

  .characteristic-icon img {
    width: 28px;
    height: 28px;
  }

  .characteristics-banner {
    font-size: 1.75rem;
    padding: 10px 25px;
  }

  .characteristic-center img {
    max-width: 250px;
  }

  .videos-bubbles .bubble-1 {
    width: 50px;
    height: 50px;
  }

  .videos-bubbles .bubble-2 {
    width: 40px;
    height: 40px;
  }

  .videos-bubbles .bubble-3 {
    width: 55px;
    height: 55px;
  }

  .videos-bubbles .bubble-4 {
    width: 35px;
    height: 35px;
  }

  .footer-bubbles .bubble-1 {
    width: 40px;
    height: 40px;
  }

  .footer-bubbles .bubble-2 {
    display: none;
  }

  .footer-bubbles .bubble-3 {
    width: 35px;
    height: 35px;
  }

  .footer-bubbles .bubble-4 {
    display: none;
  }

  .footer-bubbles .bubble-5 {
    display: none;
  }

  .footer-bubbles .bubble-6 {
    width: 35px;
    height: 35px;
  }
}

/* utility classes removed (unused) */


/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible para accesibilidad */
.btn:focus-visible,
nav a:focus-visible {
  outline: 2px solid #F4940C;
  outline-offset: 2px;
}

/* Mejorar la experiencia del menú móvil */
.nav-mobile a:last-child {
  border-bottom: none;
}

/* Asegurar que el menú hamburguesa sea visible en móvil */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block !important;
  }

  .nav-desktop {
    display: none !important;
  }

  .btn-contacto-header {
    display: none;
  }
}

.nav-mobile {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.btn-whatsapp:hover {
  background: #25D366 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
  color: white !important;
}

.btn-whatsapp .bi-whatsapp {
  font-size: 28px !important;
  width: 28px !important;
  height: 28px !important;
  transition: transform 0.3s ease !important;
  line-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
}

.btn-whatsapp:hover .bi-whatsapp {
  transform: scale(1.1) !important;
}

/* ============================================
   NEW DESIGN STYLES
   ============================================ */

/* Logo New Design */
.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-graphic {
  font-size: 24px;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-de-small {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}

.logo-litro-header {
  font-size: 24px;
  color: var(--dark-blue);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

/* Header Button */
.btn-contacto-header {
  padding: 5px 15px;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-contacto-header:hover {
  background: var(--teal);
  color: white;
}

.nav-desktop a.active {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-style: solid;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-style: solid;
}

/* Hero Section New Design */
.hero {
  background: var(--dark-blue-bg);
  position: relative;
  min-height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 90px;
}

.hero-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bubble {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.bubble-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.bubble-4 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  animation-delay: 1s;
}

.bubble-5 {
  width: 90px;
  height: 90px;
  bottom: 30%;
  right: 10%;
  animation-delay: 3s;
}

.bubble-6 {
  width: 70px;
  height: 70px;
  top: 70%;
  left: 70%;
  animation-delay: 2.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  33% {
    transform: translateY(-20px) translateX(10px);
  }

  66% {
    transform: translateY(10px) translateX(-10px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

.hero-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-column-left {
  justify-content: flex-start;
  align-items: flex-end;
}

.hero-text-column {
  justify-content: center;
  z-index: 3;
}

.hero-image-column-right {
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-text {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.hero-title {
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.title-white {
  font-size: 5.5rem;
  color: white;
  display: block;
}

.title-teal {
  font-size: 3.2rem;
  color: white;
  display: block;
  background-color: var(--teal);
  padding: 5px 15px;
  border-radius: 8px;
  text-align: center;
  line-height: normal;
}

.title-question-pink {
  color: var(--pink);
  font-size: 5.5rem;
  font-family: auto;
}

.title-question-pink.right {
  transform: rotate(-10deg);
  display: inline-block;
}

.title-question-pink.left {
  transform: rotate(10deg);
  display: inline-block;
}

.title-white {
  color: white;
}

.title-gray {
  color: #999;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 30px;
  font-weight: 300;
}

.btn-hero {
  display: inline-block;
  padding: 5px 15px;
  background: var(--yellow);
  color: var(--dark-blue);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
}

/* hero images positioning rules below */

.hero-image-left {
  position: absolute;
  bottom: -170px;
  left: 0;
}

.hero-image-right {
  position: absolute;
  top: -150px;
  right: 10px;
}

.wave-divider {
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index: 1;
}

/* Investment Section */
.section-investment {
  padding: 80px 0;
  background: white;
}

.grid-investment,
.benefits-detail {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 30px;
  align-items: center;
}

.investment-image img {
  width: 100%;
  border-radius: 10px;
}

.investment-title {
  font-size: 5rem;
  color: var(--dark-blue);
  line-height: 1;
}

.investment-subtitle {
  padding-left: 60px;
  line-height: 1;
}

.title-bg-pink {
  display: inline-block;
  font-size: 2.5rem;
  background: var(--pink);
  color: white;
  padding: 5px 15px;
  border-radius: 8px;
  margin-left: 5px;
}

.title-question-mark {
  font-size: 4.5rem;
  font-family: 'Montserrat', sans-serif;
}

.title-question-mark.right {
  transform: rotate(10deg);
  display: inline-block;
}

.pink {
  color: var(--pink) !important;
}

.title-question-mark.left {
  transform: rotate(-10deg);
  display: inline-block;
}

.btn-investment {
  display: inline-block;
  padding: 15px 35px;
  background: var(--yellow);
  color: var(--dark-blue);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.3);
}

.btn-investment:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
}

.investment-content {
  text-align: center;
  padding-top: 80px;
}

.investment-text {
  color: var(--dark-blue);
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 80%;
  margin: 0 auto;
}

/* Why Choose Section */
.section-why-choose {
  padding: 80px 0;
  background: var(--teal-light);
}

.title-pink {
  color: var(--pink);
}

.why-choose-title {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
}

.why-choose-logo {
  margin-left: 50px;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  margin-top: 50px;
}

.benefit-card {
  padding: 30px 20px;
  border-radius: 12px;
  color: white;
  transition: transform 0.3s ease;
  text-align: right;
}

.blue-bg {
  background: var(--dark-blue);
}

.teal-bg {
  background: var(--teal);
}

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

.benefit-card img {
  margin-bottom: 15px;
}

.benefit-cards .benefit-text {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}

.benefits-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.benefits-list ul {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #333;
}

.benefits-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--dark-blue);
  font-size: 24px;
  line-height: 1;
}

.benefits-list strong {
  color: var(--dark-blue);
  font-weight: 700;
}

/* Characteristics Section */
.section-characteristics {
  padding: 80px 0;
  background: white;
}

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

.characteristics-banner {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
}

.characteristics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 30px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.characteristic-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.characteristic-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--dark-blue-bg);
  border-radius: 50%;
}

.characteristic-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.characteristic-text {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  line-height: 1.35;
  max-width: 260px;
}

.characteristic-center {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.characteristic-center img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.characteristic-top-left {
  grid-column: 1;
  grid-row: 1;
}

.characteristic-middle-left {
  grid-column: 1;
  grid-row: 2;
}

.characteristic-bottom-left {
  grid-column: 1;
  grid-row: 3;
}

/* Alineación lateral: izquierda texto-ícono (hacia el círculo) */
.characteristic-top-left,
.characteristic-middle-left,
.characteristic-bottom-left {
  justify-content: flex-end;
  text-align: right;
  flex-direction: row-reverse;
}

.characteristic-top-right {
  grid-column: 3;
  grid-row: 1;
}

.characteristic-middle-right {
  grid-column: 3;
  grid-row: 2;
}

.characteristic-bottom-right {
  grid-column: 3;
  grid-row: 3;
}

/* Alineación lateral: derecha ícono-texto (hacia afuera) */
.characteristic-top-right,
.characteristic-middle-right,
.characteristic-bottom-right {
  justify-content: flex-start;
  text-align: left;
}

.characteristic-bottom-center {
  grid-column: 1 / 4;
  grid-row: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  margin-top: 20px;
}

/* Videos Section */
.section-videos {
  padding-top: 80px;
  background: var(--dark-blue-bg);
  position: relative;
}

.section-videos .hero-bubbles {
  z-index: 1;
}

.videos-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
}

.title-banner-teal {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  margin-left: 10px;
}

.videos-subtitle {
  text-align: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.video-item {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-item video {
  width: 100%;
  height: auto;
  display: block;
}

.videos-image {
  width: 100%;
  position: relative;
  z-index: 2;
  line-height: 0;
}

.videos-image img {
  width: 100%;
}

.videos-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.videos-bubbles .bubble-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.videos-bubbles .bubble-2 {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 10%;
  animation-delay: 1.5s;
}

.videos-bubbles .bubble-3 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 15%;
  animation-delay: 3s;
}

.videos-bubbles .bubble-4 {
  width: 70px;
  height: 70px;
  top: 70%;
  left: 75%;
  animation-delay: 2s;
}

/* Contact Section */
.section-contact {
  padding: 80px 0;
  background: white;
}

.contact-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 10px;
}

.text-pink {
  color: var(--pink);
  font-weight: 600;
}

.contact-instruction {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

/* Footer New Design */
.footer-new {
  background: var(--dark-blue-bg);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.footer-content-new {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}


.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 0 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 24px;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-logo {
  border-left: 1px solid white;
  padding-left: 10px;
}

.logo-de {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.logo-litro {
  font-size: 32px;
  color: white;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--gray-dark);
  text-decoration: none;
}

.btn-youtube:hover {
  background: #FF0000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.nubes {
  width: 100%;
  height: auto;
  margin: -10px 0px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding: 20px 0;
  }

  .hero-image-column-left,
  .hero-image-column-right {
    order: 3;
    justify-content: center;
    align-items: center;
  }

  .hero-text-column {
    order: 1;
  }

  .hero-image-left,
  .hero-image-right {
    max-width: 200px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .title-white {
    font-size: 3rem;
  }

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

  .title-question-pink {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .investment-title,
  .why-choose-title,
  .contact-title {
    font-size: 2rem;
  }

  .benefit-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .characteristics-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 30px;
    padding: 0 15px;
  }

  .characteristic-center {
    grid-column: auto;
    grid-row: auto;
    order: 4;
    margin: 30px 0;
  }

  .characteristic-item {
    align-items: flex-start;
    min-height: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .characteristic-top-left {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 18px;
    padding: 20px 0;
    align-items: flex-start;
  }

  .characteristic-middle-left {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 18px;
    padding: 20px 0;
    align-items: flex-start;
  }

  .characteristic-bottom-left {
    grid-column: auto;
    grid-row: auto;
    order: 3;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 18px;
    padding: 20px 0;
    align-items: flex-start;
  }

  .characteristic-top-right {
    grid-column: auto;
    grid-row: auto;
    order: 5;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 18px;
    padding: 20px 0;
    align-items: flex-start;
  }

  .characteristic-middle-right {
    grid-column: auto;
    grid-row: auto;
    order: 6;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 18px;
    padding: 20px 0;
    align-items: flex-start;
  }

  .characteristic-bottom-right {
    grid-column: auto;
    grid-row: auto;
    order: 7;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 18px;
    padding: 20px 0;
    align-items: flex-start;
  }

  .characteristic-bottom-center {
    grid-column: auto;
    grid-row: auto;
    order: 8;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 18px;
    padding: 20px 0;
    align-items: flex-start;
  }

  .characteristic-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.8;
    flex: 1;
    min-height: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .characteristic-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    margin-top: 2px;
  }

  .characteristic-icon img {
    width: 30px;
    height: 30px;
  }

  .characteristics-banner {
    font-size: 2rem;
    padding: 12px 30px;
  }

  .video-gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-content-new {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-logo-new {
    text-align: center;
    align-items: center;
  }

  .videos-bubbles .bubble-1 {
    width: 60px;
    height: 60px;
  }

  .videos-bubbles .bubble-2 {
    width: 50px;
    height: 50px;
  }

  .videos-bubbles .bubble-3 {
    width: 70px;
    height: 70px;
  }

  .videos-bubbles .bubble-4 {
    width: 45px;
    height: 45px;
  }

  .footer-bubbles .bubble-1 {
    width: 50px;
    height: 50px;
  }

  .footer-bubbles .bubble-2 {
    display: none;
  }

  .footer-bubbles .bubble-3 {
    width: 40px;
    height: 40px;
  }

  .footer-bubbles .bubble-4 {
    display: none;
  }

  .footer-bubbles .bubble-5 {
    display: none;
  }

  .footer-bubbles .bubble-6 {
    width: 45px;
    height: 45px;
  }
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

.section-thankyou {
  padding: 120px 0;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

.thankyou-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.thankyou-icon {
  font-size: 80px;
  color: var(--teal);
  margin-bottom: 30px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: 'Montserrat', sans-serif;
}

.thankyou-message {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.thankyou-submessage {
  font-size: 1rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 40px;
}

.thankyou-cta {
  margin-top: 50px;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 40px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large i {
  font-size: 32px;
}

.btn-whatsapp-large:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-large:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .section-thankyou {
    padding: 80px 0;
  }

  .thankyou-icon {
    font-size: 60px;
    margin-bottom: 20px;
  }

  .thankyou-title {
    font-size: 2.5rem;
  }

  .thankyou-message {
    font-size: 1.1rem;
  }

  .thankyou-submessage {
    font-size: 0.95rem;
  }

  .btn-whatsapp-large {
    padding: 18px 30px;
    font-size: 1.1rem;
    gap: 12px;
  }

  .btn-whatsapp-large i {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .thankyou-title {
    font-size: 2rem;
  }

  .thankyou-message {
    font-size: 1rem;
  }

  .btn-whatsapp-large {
    padding: 16px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 350px;
  }
}