/* MercadoPago Hero Content Styles - Shopify Integration */

/* Mobile/Desktop Layout Control */
.mobile-product-layout {
  display: block;
}

.desktop-product-layout {
  display: none;
}

/* Mobile Product Form Styles - HIDDEN FROM VIEW */
.mobile-product-form {
  display: none !important; /* Completamente invisível */
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.mobile-form-wrapper {
  width: 100%;
}

.product-form-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Variant Selector Mobile */
.product-form__option {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-form__label {
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.select {
  position: relative;
}

.select__select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.select__select:focus {
  outline: none;
  border-color: #009EE3;
  box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.1);
}

/* Quantity Selector Mobile */
.product-form__quantity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-form__quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.product-form__quantity-button {
  width: 44px;
  height: 44px;
  border: none;
  background: #f8f9fa;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-form__quantity-button:hover {
  background: #e9ecef;
}

.product-form__quantity-button:active {
  background: #dee2e6;
}

.product-form__quantity-input {
  width: 60px;
  height: 44px;
  border: none;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  text-align: center;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: #ffffff;
}

.product-form__quantity-input:focus {
  outline: none;
}

/* Price Display Mobile */
.product-form__price {
  margin: 8px 0;
}

.price--large {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price__compare {
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  color: #666666;
  text-decoration: line-through;
}

.price__current {
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #009EE3;
}

/* Mobile Action Buttons */
.product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn--full-width {
  width: 100%;
}

.btn--primary {
  background: #009EE3;
  color: #ffffff;
  border: 2px solid #009EE3;
}

.btn--primary:hover {
  background: #0086c3;
  border-color: #0086c3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 158, 227, 0.3);
}

.btn--secondary {
  background: #ffffff;
  color: #009EE3;
  border: 2px solid #009EE3;
}

.btn--secondary:hover {
  background: #009EE3;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 158, 227, 0.2);
}

.btn--whatsapp {
  background: #25D366 !important;
  color: #ffffff !important;
  border: 2px solid #25D366;
}

.btn--whatsapp:hover {
  background: #1fbf5a !important;
  border-color: #1fbf5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn__content {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CartX Button Specific */
.cartx-btn-buy-it-now__button {
  background: linear-gradient(135deg, #009EE3 0%, #00b4f7 100%);
  color: #ffffff;
  border: none;
  position: relative;
}

.cartx-btn-buy-it-now__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cartx-btn-buy-it-now__button:hover::before {
  left: 100%;
}

.cartx-btn-buy-it-now__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 158, 227, 0.4);
}

/* MercadoPago Buy Button */
.mercadopago-buy-btn {
  background: linear-gradient(135deg, #00a650 0%, #00d166 100%);
  color: #ffffff;
  border: none;
  position: relative;
}

.mercadopago-buy-btn:hover {
  background: linear-gradient(135deg, #008f44 0%, #00bf59 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 80, 0.4);
}

/* Payment Button Container */
.product-form__payment-button {
  margin-top: 8px;
}

.product-form__payment-button .cartx-btn-buy-it-now__button--unbranded {
  border-radius: 8px !important;
  height: 52px !important;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 600 !important;
}

/* WhatsApp Button */
.product-form__whatsapp {
  margin-top: 8px;
}

/* Loading States */
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn[data-loading="true"] {
  position: relative;
  color: transparent;
}

.btn[data-loading="true"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .mobile-product-form {
    margin: 8px;
    padding: 20px 12px;
  }
  
  .btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .price__current {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  .mobile-product-layout {
    display: none;
  }
  
  .desktop-product-layout {
    display: block;
  }
}

.mp-hero-section {
  background: linear-gradient(180deg, #FFE600 28%, #FFD400 100%);
  padding: 24px 16px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent any unwanted scroll behavior */
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto;
  /* MercadoPago style rounded bottom corners and shadow */
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
}

.mp-hero-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  /* Lock content position */
  transform: translateZ(0);
}

.mp-hero-content .content {
  margin: 24px 0;
  max-width: 320px;
  width: 100%;
}

/* Background pattern similar to MercadoPago */
.mp-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

/* Volanta Styles */
.mp-hero-content .volanta {
  font-size: 12px;
  line-height: 15px;
  margin: 0 auto 12px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 16px;
  backdrop-filter: blur(2.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Title Styles */
.mp-hero-content .title {
  font-size: 28px;
  line-height: 32px;
  margin: 12px 0 20px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  text-align: center;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-feature-settings: "ss04" on;
  letter-spacing: -0.32px;
}

/* Pricing Section */
.mp-hero-content .pricing {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mp-hero-content .pricing .old {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: line-through;
  font-weight: 400;
}

.mp-hero-content .pricing .current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.mp-hero-content .pricing .current .value {
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: baseline;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-feature-settings: "ss04" on;
  letter-spacing: -0.32px;
}

.mp-hero-content .pricing .current .value sup {
  font-size: 18px;
  font-weight: 700;
  margin-left: 2px;
}

.mp-hero-content .pricing .current .discount {
  background: #FF6B35;
  color: white;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.mp-hero-content .pricing .description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin: 8px 0 0;
  text-align: center;
  font-weight: 500;
}

/* Actions Section */
.mp-hero-content .actions {
  margin: 32px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mp-hero-content .actions .primary-btn {
  background: #009EE3;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  max-width: 280px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 158, 227, 0.3);
  cursor: pointer;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mp-hero-content .actions .primary-btn:hover {
  background: #007BB8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 158, 227, 0.4);
  text-decoration: none;
  color: white;
}

.mp-hero-content .actions .action-detail {
  justify-content: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.mp-hero-content .actions .action-detail .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Product Image Integration */
.mp-hero-product-image {
  margin: -52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 26px;
  padding-top: 10px;
}
.mp-hero-product-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: 
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.20))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  /* Force remove any transforms - especially translateY */
  transform: none !important;
  will-change: auto;
  /* Prevent any external scripts from moving the image */
  top: 0 !important;
  left: 0 !important;
}

.mp-hero-product-image img:hover {
  transform: scale(1.05) !important;
  filter: 
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2))
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15))
    drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

/* Additional protection against parallax effects */
.mp-hero-section .mp-hero-product-image img[style*="translateY"] {
  transform: none !important;
}

/* Mobile Product Form Styles */
.mobile-product-form {
  padding: 24px 16px;
  background: #fff;
}

.mobile-form-wrapper {
  max-width: 320px;
  margin: 0 auto;
}

.mobile-add-to-cart {
  background: #009EE3;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 158, 227, 0.3);
  cursor: pointer;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.mobile-add-to-cart:hover {
  background: #007BB8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 158, 227, 0.4);
}

/* Desktop Responsive - Only for MercadoPago section if needed */
@media (min-width: 768px) {
  /* Mobile layout is hidden on desktop, so these styles won't apply */
  .mobile-product-layout .mp-hero-section {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mp-hero-content .title {
    font-size: 48px;
    line-height: 54px;
  }
  
  .mp-hero-content .pricing .current .value {
    font-size: 40px;
    line-height: 40px;
  }
  
  .mp-hero-content .pricing .current .value sup {
    font-size: 22px;
  }
}

/* Animation Effects */
.mp-hero-content .content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.mp-hero-content .volanta { animation-delay: 0.1s; }
.mp-hero-content .title { animation-delay: 0.2s; }
.mp-hero-content .pricing { animation-delay: 0.3s; }
.mp-hero-content .actions { animation-delay: 0.4s; }
.mp-hero-product-image { 
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s; 
}

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

/* Loading states */
.mp-hero-content .pricing .current .value[data-loading] {
  opacity: 0.5;
  position: relative;
}

.mp-hero-content .pricing .current .value[data-loading]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-top: 2px solid #009EE3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Compatibility with existing theme */
.mp-hero-section * {
  box-sizing: border-box;
}

.mp-hero-section h1,
.mp-hero-section h2,
.mp-hero-section h3,
.mp-hero-section h4,
.mp-hero-section h5,
.mp-hero-section h6 {
  margin: 0;
  padding: 0;
}

.mp-hero-section p {
  margin: 0;
  padding: 0;
}

/* Hide on quick view to avoid conflicts */
.product-quick-view .mp-hero-section {
  display: none;
}

/* Accessibility improvements */
.mp-hero-content .actions .primary-btn:focus {
  outline: 2px solid #007BB8;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .mp-hero-content .content > *,
  .mp-hero-product-image {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .mp-hero-content .actions .primary-btn:hover {
    transform: none;
  }
  
  .mp-hero-product-image img:hover {
    transform: none;
  }
}

/* MercadoPago Fee Selector Styles */
.calm-landings-library-feeselector {
  box-sizing: border-box;
  width: 100%;
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  /* Add spacing to show hero shadow */
  margin-top: 20px;
}

.calm-landings-library-feeselector .fee-title {
  text-align: center;
  margin-bottom: 40px;
}

.calm-landings-library-feeselector .fee-title h2 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 24px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
}

.calm-landings-library-feeselector .fee-title p {
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.549);
  font-weight: 400;
}

.calm-landings-library-feeselector .wrapper-fee-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: normal;
}

.calm-landings-library-feeselector .fee-selector-info {
  background-color: #f5f5f5;
  border-radius: 40px;
  padding: 56px 16px;
  width: 320px;
}

.calm-landings-library-feeselector .calm-landings-library-section-title__title {
  color: #000;
  font-weight: 500;
  text-align: left;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 40px;
  padding: 0 15px;
}

/* Tax Switcher Styles */
.calm-landings-library-taxes-switcher {
  margin: 0 auto;
  padding: 10px 0;
  max-width: 510px;
  position: relative;
  z-index: 4;
}

.calm-landings-library-taxes-switcher .switch-bar {
  background: rgba(0, 0, 0, 0.039);
  border-radius: 16px;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.calm-landings-library-taxes-switcher .switch-bar__highlight {
  background-color: #fff;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
  height: 84.5%;
  left: 3px;
  top: 3px;
  width: 32.7%;
  position: absolute;
  transition: transform 0.3s ease;
  z-index: 10;
}

.calm-landings-library-taxes-switcher .switch-bar__button {
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.549);
  cursor: pointer;
  flex: 1;
  font-family: 'Proxima Nova', sans-serif;
  font-size: 12px;
  line-height: 12.5px;
  margin: 10px 0;
  position: relative;
  z-index: 11;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.calm-landings-library-taxes-switcher .switch-bar__button--active {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.898);
}

.calm-landings-library-taxes-switcher .switch-bar__button:active,
.calm-landings-library-taxes-switcher .switch-bar__button:focus {
  background-color: transparent;
  outline: none;
}

/* Values Display */
.calm-landings-library-taxes-switcher .values {
  display: flex;
  gap: 0 8px;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

.calm-landings-library-taxes-switcher .values__box {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.calm-landings-library-taxes-switcher .values__value {
  align-items: center;
  display: flex;
  justify-content: center;
}

.calm-landings-library-taxes-switcher .values__flip {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  line-height: 27px;
  margin-left: 10px;
}

.calm-landings-library-taxes-switcher .values__percent {
  align-self: flex-end;
  font-size: 16px;
  font-weight: 700;
}

.calm-landings-library-taxes-switcher .values__label {
  color: rgba(0, 0, 0, 0.549);
  font-size: 12px;
  font-weight: 400;
  margin-top: 7px;
}

/* Number Flip Animation */
.number-flip {
  position: relative;
  overflow: hidden;
  height: 27px;
}

.number-flip .ctnr {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.number-flip .digit {
  user-select: none;
}

.number-flip .sprtr {
  display: inline-block;
}

/* Modal Styles */
.calm-landings-library-modal {
  padding: 0;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
}

.calm-landings-library-modal > section {
  margin: 14px auto 16px;
  position: relative;
  z-index: 4;
  max-width: 320px;
}

.calm-landings-library-modal > section .section-content {
  font-size: 16px;
  line-height: 18px;
  margin: 0 auto;
}

.calm-landings-library-modal > section .section-content .trigger {
  color: #3483fa;
  cursor: pointer;
  font-weight: 600;
  line-height: 17.5px;
  transition: 0.3s;
  font-size: 14px;
}

.calm-landings-library-modal > section .section-content .trigger.icon {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.calm-landings-library-modal > section .section-content .trigger:hover {
  color: #23549c;
}

.calm-landings-library-modal .trigger > svg path {
  fill: #3483fa;
}

.wrapper-modal {
  margin-top: 36px;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* Media Container */
.wrapper-media {
  height: auto;
  margin-top: 20px;
  padding: 0;
  width: 320px;
  background-color: #f5f5f5 !important;
  border-radius: 40px;
  overflow: hidden;
}

.calm-landings-library-container-media {
  margin-bottom: -5px;
}

.calm-landings-library-container-media video {
  max-width: 100%;
  height: 100%;
  border: medium;
  outline: none;
  pointer-events: none;
}

/* Payment Methods Section Styles */
.calm-landings-library-paymentmethods__title {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: #333;
  text-align: center;
  margin: 0 0 32px 0;
  padding: 0 24px;
}

.calm-landings-library-paymentmethods__container {
  padding: 0 24px;
}

.calm-landings-library-paymentmethods__subtitle {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #666;
  margin: 0 0 24px 0;
  text-align: left;
}

.calm-landings-library-paymentmethods__container-full {
  margin-bottom: 40px;
}

.calm-landings-library-paymentmethods__bigger {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.calm-landings-library-paymentmethods__item--bigger {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.calm-landings-library-paymentmethods__item--bigger img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
}

.calm-landings-library-paymentmethods__text {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  margin: 0;
}

.calm-landings-library-paymentmethods__normal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.calm-landings-library-paymentmethods__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  min-height: 60px;
}

.calm-landings-library-paymentmethods__item img {
  max-width: 40px;
  max-height: 32px;
  object-fit: contain;
}

.calm-landings-library-paymentmethods__footer {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #999;
  text-align: center;
  margin: 32px 0 0 0;
  padding: 0 24px;
}

/* Payment Methods Mobile Adjustments */
@media (max-width: 767px) {
  .calm-landings-library-paymentmethods__normal {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  
  .calm-landings-library-paymentmethods__item {
    padding: 12px 4px;
    min-height: 50px;
  }
  
  .calm-landings-library-paymentmethods__item img {
    max-width: 32px;
    max-height: 24px;
  }
  
  .calm-landings-library-paymentmethods__bigger {
    flex-direction: column;
    gap: 12px;
  }
  
  .calm-landings-library-paymentmethods__item--bigger {
    padding: 20px 16px;
  }
}

/* Mobile Product Info/Form - Adjusted for Payment Methods */
@media (max-width: 767px) {
  .product .product__info {
    margin-top: 88px; /* Adjusted spacing for payment methods section */
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .main-content {
    margin-top: 0;
  }
}

/* Images Highlight Section Styles */
.calm-landings-library-imageshighlight .title {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: #333;
  text-align: center;
  margin: 0 0 32px 0;
  padding: 0 24px;
}

.calm-landings-library-imageshighlight__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 24px;
}

.calm-landings-library-imageshighlight .highlight {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  min-height: 400px;
}

.calm-landings-library-imageshighlight .highlight.full {
  flex-direction: column;
  height: 450px;
}

.calm-landings-library-imageshighlight .highlight.half {
  height: 480px;
}

.calm-landings-library-imageshighlight .side {
  position: relative;
  z-index: 2;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.calm-landings-library-imageshighlight__top-icon {
  margin-bottom: 20px;
}

.calm-landings-library-imageshighlight__top-icon svg {
  width: 40px;
  height: 40px;
  color: #00E587;
}

.calm-landings-library-imageshighlight .side h3 {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: white;
  margin: 0 0 12px 0;
  max-width: 280px;
}

.calm-landings-library-imageshighlight .side .description {
  font-family: 'Proxima Nova', Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.calm-landings-library-imageshighlight .image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.calm-landings-library-imageshighlight__image {
  width: auto;
  height: 100%;
  max-width: 180px;
  object-fit: contain;
  object-position: left bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}

.calm-landings-library-imageshighlight .side__square {
  position: absolute;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.calm-landings-library-imageshighlight .side__square.pix {
  background: linear-gradient(135deg, #00E587 0%, #85DEFF 100%);
}

.calm-landings-library-imageshighlight .side__square.colorChip4g {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.calm-landings-library-imageshighlight .side__square.colorBattery {
  background: linear-gradient(135deg, #32CD32 0%, #00FF7F 100%);
}

.calm-landings-library-imageshighlight__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.calm-landings-library-imageshighlight__icon svg {
  width: 48px;
  height: 48px;
  color: #000;
}

/* Mobile Adjustments for Images Highlight */
@media (max-width: 767px) {
  .calm-landings-library-imageshighlight .highlight.half {
    height: 400px;
  }
  
  .calm-landings-library-imageshighlight .highlight.full {
    height: 380px;
  }
  
  .calm-landings-library-imageshighlight .side {
    padding: 24px 20px;
  }
  
  .calm-landings-library-imageshighlight .side h3 {
    font-size: 18px;
    max-width: 250px;
  }
  
  .calm-landings-library-imageshighlight__top-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .calm-landings-library-imageshighlight .side__square {
    width: 60px !important;
    height: 66px !important;
    bottom: 120px !important;
    right: 20px !important;
    left: auto !important;
  }
  
  .calm-landings-library-imageshighlight__icon svg {
    width: 36px;
    height: 36px;
  }
  
  .calm-landings-library-imageshighlight__image {
    max-width: 300px;
    height: auto;
    max-height: 600px;
    left: 17px !important;
    right: auto !important;
  }
}

/* ==========================================================================
   MercadoPago Slider Section - Mobile Only 
   ========================================================================== */

/* Base Andes Carousel Styles */
.andes-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0 -1px -1px 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

[data-andes-carousel-snapped-control] {
  box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
  -moz-box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
  -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
  position: absolute;
  z-index: 1;
}

[data-andes-carousel-snapped-control]:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2968c8, 0 0 0 5px rgba(65,137,230,.3);
  -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2968c8, 0 0 0 5px rgba(65,137,230,.3);
  -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2968c8, 0 0 0 5px rgba(65,137,230,.3);
  outline: none;
}

[data-andes-carousel-snapped-control]:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2968c8, 0 0 0 5px rgba(65,137,230,.3);
  -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2968c8, 0 0 0 5px rgba(65,137,230,.3);
  -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #2968c8, 0 0 0 5px rgba(65,137,230,.3);
  outline: none;
}

[data-andes-carousel-snapped-control]:focus:not(:focus-visible) {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
}

[data-andes-carousel-snapped-control][data-andes-position=bottom] {
  bottom: 0;
  left: 50%;
  top: unset;
}

[data-andes-carousel-snapped-control]:active,
[data-andes-carousel-snapped-control]:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,.1);
  -moz-box-shadow: 0 8px 16px 0 rgba(0,0,0,.1);
  -webkit-box-shadow: 0 8px 16px 0 rgba(0,0,0,.1);
}

.andes-carousel-snapped {
  height: 100%;
}

.andes-carousel-snapped--scroll-visible {
  overflow-x: visible;
}

.andes-carousel-snapped__container {
  position: relative;
}

.andes-carousel-snapped__container [data-andes-carousel-snapped-control] {
  opacity: 0;
}

.andes-carousel-snapped__container [data-andes-carousel-snapped-control]:focus-visible {
  opacity: 1;
}

.andes-carousel-snapped__container--arrows-visible [data-andes-carousel-snapped-control],
.andes-carousel-snapped__container:hover [data-andes-carousel-snapped-control] {
  opacity: 1;
}

.andes-carousel-snapped__container--arrows-visible [data-andes-carousel-snapped-control][data-andes-state~=disabled],
.andes-carousel-snapped__container:hover [data-andes-carousel-snapped-control][data-andes-state~=disabled] {
  opacity: 0;
}

.andes-carousel-snapped__controls-wrapper {
  position: relative;
}

.andes-carousel-snapped__wrapper {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

.andes-carousel-snapped__slide {
  cursor: grab;
  display: flex;
  flex-shrink: 0;
  height: 100%;
  width: 100%;
}

.andes-carousel-snapped__slide img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.andes-carousel-snapped__control {
  align-items: center;
  background-color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 64px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
}

.andes-carousel-snapped__control[data-andes-state~=disabled] {
  cursor: default;
}

.andes-carousel-snapped__control svg,
.andes-carousel-snapped__control svg path {
  fill: #3483fa;
}

.andes-carousel-snapped__pagination {
  display: flex;
  list-style: none;
  padding: 0;
}

.andes-carousel-snapped__pagination[data-andes-carousel-snapped-pagination] {
  margin: 0;
  position: absolute;
}

.andes-carousel-snapped__pagination[data-andes-carousel-snapped-pagination][data-andes-position=bottom] {
  bottom: 0;
  left: 50%;
  top: unset;
}

.andes-carousel-snapped__pagination [data-andes-carousel-snapped-pagination-item] {
  display: flex;
}

.andes-carousel-snapped__pagination [data-andes-carousel-snapped-pagination-item] button {
  border: 0;
  border-radius: 50%;
  height: 6px;
  margin: 0 2px;
  padding: 0;
  width: 6px;
}

@media (prefers-reduced-motion: no-preference) {
  .andes-carousel-snapped__pagination [data-andes-carousel-snapped-pagination-item] button {
    transition: background-color .35s ease-in-out, box-shadow .35s ease-in-out;
  }
}

.andes-carousel-snapped__pagination [data-andes-carousel-snapped-pagination-item][data-andes-carousel-snapped-pagination-item-active=true] [data-andes-carousel-snapped-pagination-action] {
  background-color: #3483fa;
}

.andes-carousel-snapped__pagination--dark [data-andes-carousel-snapped-pagination-item] [data-andes-carousel-snapped-pagination-action] {
  background-color: rgba(0,0,0,.25);
  box-shadow: inset 0 0 0 1px #fff;
  -moz-box-shadow: inset 0 0 0 1px #fff;
  -webkit-box-shadow: inset 0 0 0 1px #fff;
}

.andes-carousel-snapped__pagination--dark [data-andes-carousel-snapped-pagination-item][data-andes-carousel-snapped-pagination-item-active=true] [data-andes-carousel-snapped-pagination-action] {
  background-color: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
  -moz-box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
  -webkit-box-shadow: inset 0 0 0 1px rgba(0,0,0,.25);
}

.andes-carousel-snapped__container--content {
  width: 100%;
}

.andes-carousel-snapped__container--content.andes-carousel-snapped__container--with-controls.andes-carousel-snapped__container--strict-boundaries {
  margin-left: 32px;
  width: calc(100% - 64px);
}

.andes-carousel-snapped__container--content .andes-carousel-snapped__control {
  border-radius: 50%;
  width: 64px;
}

.andes-carousel-snapped__container--content .andes-carousel-snapped__control--previous {
  left: -32px;
  right: unset;
}

.andes-carousel-snapped__container--content .andes-carousel-snapped__control--next {
  left: unset;
  right: -32px;
}

.andes-carousel-snapped__container--content .andes-carousel-snapped__control--size-small {
  height: 32px;
  width: 32px;
}

.andes-carousel-snapped__container--content .andes-carousel-snapped__control--size-small.andes-carousel-snapped__control--previous {
  left: -16px;
}

.andes-carousel-snapped__container--content .andes-carousel-snapped__control--size-small.andes-carousel-snapped__control--next {
  right: -16px;
}

/* Calm Landings Library Slider Specific Styles */
.calm-landings-library-slider {
  width: 100%;
}

.calm-landings-library-slider__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.calm-landings-library-slider h3 {
  font-weight: 700;
}

.calm-landings-library-slider.type-rounded .calm-landings-library-slider__slide-item > div,
.calm-landings-library-slider.type-rounded .calm-landings-library-slider__slide-item > div * {
  border-radius: 40px;
}

.calm-landings-library-slider.type-rounded .calm-landings-library-slider__slide-item > div {
  position: relative;
}

.calm-landings-library-slider.type-rounded h3 {
  left: 0;
  position: absolute;
  top: 0;
}

.calm-landings-library-slider.type-rounded .andes-carousel-snapped__container--content.andes-carousel-snapped__container--with-controls.andes-carousel-snapped__container--strict-boundaries {
  margin-left: 0;
  width: 100%;
}

.calm-landings-library-slider.type-rounded .andes-carousel-snapped__pagination[data-andes-carousel-snapped-pagination][data-andes-position=bottom] {
  display: none;
}

.calm-landings-library-slider figure {
  margin: 0;
}

.rounded-figure {
  border-radius: 40px;
  overflow: hidden;
}

.calm-landings-library-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

/* Mobile Specific Styles */
.calm-landings-library-slider.mobile h2:not(.calm-landings-library-section-title__title) {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  padding-bottom: 32px;
  text-align: center;
}

.calm-landings-library-slider.mobile h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
  padding: 0 24px;
  text-align: left;
}

.calm-landings-library-slider.mobile.type-rounded h3 {
  font-size: 18px;
  line-height: 24px;
  max-width: 300px;
  padding: 32px;
  left: 0;
  position: absolute;
  top: 0;
}

.calm-landings-library-slider.mobile.type-rounded .calm-landings-library-slider__slide-item > div {
  height: 420px;
  width: 300px;
  background: linear-gradient(45deg, #1a1a1a, #333);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background images for each slide */
.calm-landings-library-slider.mobile.type-rounded .calm-landings-library-slider__slide-item[data-slider="0"] > div {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://http2.mlstatic.com/storage/pog-cm-admin/calm-assets/card1-mobile--3aabea02--rebrand-mp.webp?refresh=1');
}

.calm-landings-library-slider.mobile.type-rounded .calm-landings-library-slider__slide-item[data-slider="1"] > div {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://http2.mlstatic.com/storage/pog-cm-admin/calm-assets/card2-mobile--e2f93355--rebrand-mp.webp?refresh=1');
}

.calm-landings-library-slider.mobile.type-rounded .calm-landings-library-slider__slide-item[data-slider="2"] > div {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://http2.mlstatic.com/storage/pog-cm-admin/calm-assets/card3-mobile--320817d7--rebrand-mp.webp?refresh=1');
}

/* Hide the figure elements since we're using background images */
.calm-landings-library-slider.mobile.type-rounded .rounded-figure {
  display: none;
}

.calm-landings-library-slider.mobile.type-rounded .andes-carousel-snapped__controls-wrapper {
  height: 460px;
}

.calm-landings-library-slider.mobile.type-rounded [data-andes-carousel-snapped-control] {
  bottom: -54px;
  box-shadow: none;
  height: 36px;
  left: calc(50% - 46px) !important;
  width: 36px;
  background: rgba(65,137,230,.1);
  border-radius: 50%;
}

.calm-landings-library-slider.mobile.type-rounded [data-andes-carousel-snapped-control=previous].andes-carousel-snapped__control--previous {
  transform: translate(0) !important;
}

.calm-landings-library-slider.mobile.type-rounded [data-andes-carousel-snapped-control=next].andes-carousel-snapped__control--next {
  transform: translate(56px) !important;
}

/* Slide item content styles */
.calm-landings-library-slider__slide-item-content {
  padding: 32px;
  position: relative;
  z-index: 2;
}

.calm-landings-library-slider__slide-item-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
}

/* Slider carousel styles */
.calm-landings-library-slider__carousel {
  position: relative;
}

/* Ensure proper spacing for mobile sections */
@media (max-width: 768px) {
  .calm-landings-library-section-wrapper.calm-landings-library-slider.mobile {
    margin: auto;
    max-width: 360px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ===== MERCADOPAGO SPECS STYLES ===== */
/* Specifications Section - Complete Implementation */
.calm-landings-library-specs {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.9);
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .calm-landings-library-specs {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 102px;
    padding-right: 102px;
  }
}

@media(min-width: 1366px) {
  .calm-landings-library-specs {
    margin-left: auto;
    margin-right: auto;
    max-width: 1366px;
    padding-left: 145px;
    padding-right: 145px;
  }
}

.calm-landings-library-specs .section-title {
  font-weight: 700;
  text-align: center;
}

.calm-landings-library-specs .image-section {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.calm-landings-library-specs .image-section img {
  max-width: 100%;
}

.calm-landings-library-specs.spec-section .inner-section-wrapper {
  display: flex;
  margin: 0 auto;
  max-width: 1366px;
  padding: 64px 0;
  width: 100%;
}

.calm-landings-library-specs.spec-section .row-title .title {
  font-weight: 700;
}

.calm-landings-library-specs.spec-section .rows .row {
  display: flex;
}

.calm-landings-library-specs.spec-section .rows .row .column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.calm-landings-library-specs.spec-section .rows .row .column .spec-title {
  font-weight: 700;
}

.calm-landings-library-specs.spec-section .rows .row .column .spec-prop {
  color: rgba(0, 0, 0, 0.55);
}

.calm-landings-library-specs .image-section .animated-prop {
  position: absolute;
  z-index: 1;
}

.calm-landings-library-specs--mobile .section-title {
  font-size: 28px;
  line-height: 31.5px;
  margin-bottom: 32px;
  text-align: center;
  font-family: 'Proxima Nova', sans-serif;
}

.calm-landings-library-specs--mobile .image-section {
  width: 100%;
}

.calm-landings-library-specs--mobile .image-section img {
  margin: 0 auto;
}

.calm-landings-library-specs--mobile.spec-section .inner-section-wrapper {
  flex-direction: column;
}

.calm-landings-library-specs--mobile.spec-section .inner-section-wrapper .row-title {
  margin-bottom: 32px;
  width: 100%;
}

.calm-landings-library-specs--mobile.spec-section .inner-section-wrapper .row-title .title {
  font-size: 20px;
  line-height: 22.5px;
  margin: 0 auto;
  max-width: 220px;
  text-align: center;
  font-family: 'Proxima Nova', sans-serif;
}

.calm-landings-library-specs--mobile.spec-section .rows {
  width: 100%;
}

.calm-landings-library-specs--mobile.spec-section .rows .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
}

.calm-landings-library-specs--mobile.spec-section .rows .row .column {
  display: flex;
  flex-basis: calc(50% - 8px);
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
}

.calm-landings-library-specs--mobile.spec-section .rows .row .column .icon,
.calm-landings-library-specs--mobile.spec-section .rows .row .column .icon svg {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}

.calm-landings-library-specs--mobile.spec-section .rows .row .column .spec-title {
  line-height: 18px;
  margin-bottom: 4px;
  font-weight: 700;
}

.calm-landings-library-specs--mobile.spec-section .rows .row .column .spec-prop {
  line-height: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calm-landings-library-specs--mobile.spec-section .rows .row .column .spec-prop li {
  margin: 0;
  padding: 0;
}

.calm-landings-library-specs--mobile.spec-section .rows .row .column.full {
  flex-basis: 100%;
  flex-direction: row;
}

.calm-landings-library-specs--mobile.spec-section .rows .row .column.full .icon {
  margin-right: 16px;
  margin-bottom: 0;
}

.calm-landings-library-specs--mobile.spec-section .rows .row .column.full .spec-content {
  margin-top: 6px;
}

.calm-landings-library-specs--mobile.spec-section .rows .row:not(:last-child) {
  margin-bottom: 24px;
}

@media screen and (max-width: 1280px) {
  .calm-landings-library-specs--mobile {
    padding: 0 36px;
  }
}

/* Mobile Responsive for Specs */
@media screen and (max-width: 768px) {
  .calm-landings-library-specs--mobile {
    padding: 0 20px;
  }
  
  .calm-landings-library-specs--mobile .section-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  
  .calm-landings-library-specs--mobile.spec-section .inner-section-wrapper {
    padding: 40px 0;
  }
  
  .calm-landings-library-specs--mobile.spec-section .inner-section-wrapper .row-title .title {
    font-size: 18px;
    line-height: 20px;
    max-width: 100%;
  }
  
  .calm-landings-library-specs--mobile.spec-section .rows .row .column {
    flex-basis: calc(50% - 8px);
    margin-bottom: 12px;
  }
  
  .calm-landings-library-specs--mobile.spec-section .rows .row {
    gap: 16px 12px;
  }
}

/* Especificações em coluna única apenas para telas muito pequenas */
@media screen and (max-width: 360px) {
  .calm-landings-library-specs--mobile.spec-section .rows .row .column {
    flex-basis: 100%;
    margin-bottom: 16px;
  }
  
  .calm-landings-library-specs--mobile.spec-section .rows .row {
    gap: 16px;
  }
}

/* ========================== PRODUCT CARDS LIST SECTION ========================== */
.calm-landings-library-productcardslist {
  box-sizing: border-box;
  width: 100%;
  font-family: 'Proxima Nova', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.calm-landings-library-productcardslist h2,
.calm-landings-library-productcardslist h3,
.calm-landings-library-productcardslist h4 {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
}

.calm-landings-library-productcardslist h2 {
  text-align: center;
}

.calm-landings-library-productcardslist .card {
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition: all 1s ease-out;
}

.calm-landings-library-productcardslist .card-image {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  line-height: 0;
}

.calm-landings-library-productcardslist .card-image img {
  max-width: 100%;
  min-width: 95px;
}

.calm-landings-library-productcardslist .card-content {
  display: flex;
  gap: 0;
  overflow: hidden;
  position: relative;
  transition: all 1s ease-out;
}

.calm-landings-library-productcardslist .card-info-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.calm-landings-library-productcardslist .card-inner-content {
  flex: 1;
}

.calm-landings-library-productcardslist .card-inner-content .description {
  color: rgba(0, 0, 0, 0.55);
}

.calm-landings-library-productcardslist .card-button {
  border-radius: 50%;
  padding: 0;
  position: absolute;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.calm-landings-library-productcardslist .card-button.closed {
  transition: all 0.2s ease-out;
}

.calm-landings-library-productcardslist .card-button.open {
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
}

.calm-landings-library-productcardslist .extra-info {
  height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.calm-landings-library-productcardslist .extra-info.show {
  border-top: 1px solid #e4e4e4;
  transition: all 0.2s ease-out;
}

.calm-landings-library-productcardslist .extra-info .more-info-button {
  display: inline-block;
  font-weight: 600;
  line-height: 1.15em;
  text-decoration: none;
  color: #3483fa;
}

.calm-landings-library-productcardslist .extra-info .more-info-button:hover {
  color: #2968c8;
}

.calm-landings-library-productcardslist .extra-info p {
  padding-bottom: 16px;
}

.calm-landings-library-productcardslist .extra-info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.calm-landings-library-productcardslist .extra-info li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.calm-landings-library-productcardslist .extra-info li .list-icon {
  display: flex;
}

.calm-landings-library-productcardslist .extra-info li span {
  font-size: 16px;
  line-height: 1.25em;
}

/* Mobile specific styles */
.calm-landings-library-productcardslist.mobile h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28em;
  padding-bottom: 32px;
}

.calm-landings-library-productcardslist.mobile h3 {
  align-content: end;
  font-size: 20px;
  font-weight: 700;
  height: 57px;
  line-height: 1.125em;
  padding-bottom: 12px;
}

.calm-landings-library-productcardslist.mobile h4 {
  font-size: 16px;
  line-height: 1.125em;
  padding-bottom: 16px;
}

.calm-landings-library-productcardslist.mobile .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calm-landings-library-productcardslist.mobile .card {
  border-radius: 25px;
}

.calm-landings-library-productcardslist.mobile .card-image {
  max-width: 121px;
}

.calm-landings-library-productcardslist.mobile .card-inner-content {
  padding: 32px 16px 0;
}

.calm-landings-library-productcardslist.mobile .card-inner-content .description {
  font-size: 14px;
  line-height: 1.25em;
}

.calm-landings-library-productcardslist.mobile .card-button {
  bottom: 17px;
  height: 24px;
  padding: 5px;
  right: 17px;
  width: 24px;
}

.calm-landings-library-productcardslist.mobile .extra-info {
  padding: 0 24px;
}

.calm-landings-library-productcardslist.mobile .extra-info ul {
  padding-bottom: 16px;
}

.calm-landings-library-productcardslist.mobile .extra-info li {
  gap: 8px;
}

.calm-landings-library-productcardslist.mobile .extra-info .more-info-button {
  font-size: 16px;
  padding: 13px 0;
}

.calm-landings-library-productcardslist.mobile .extra-info.show {
  height: auto;
  object-fit: contain;
  padding: 32px 24px;
}

/* ========================== FAQS SECTION ========================== */
.pog-ui-spacer {
  padding: 0 24px;
}

.pog-ui-faqs-section__container {
  width: 100%;
}

.andes-landings-container {
  box-sizing: border-box;
  margin: 0 auto;
}

.andes-landings-container--fixed {
  padding-left: 40px;
  padding-right: 40px;
}

.andes-landings-grid {
  box-sizing: border-box;
  column-gap: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.andes-landings-grid .col-12--start-1 {
  grid-column: 1/span 12;
}

.andes-landings-title {
  display: grid;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.andes-landings-title--center {
  justify-items: center;
  text-align: center;
}

.andes-landings-faq__title {
  margin-bottom: 32px;
}

.andes-landings-title__misc {
  background-color: #ffe600;
  border-radius: 5px;
  height: 8px;
  margin-bottom: 32px;
  width: 40px;
}

.andes-landings-typography {
  font-family: 'Proxima Nova', -apple-system, Roboto, Arial, sans-serif;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

.andes-landings-typography--color-primary {
  color: rgba(0, 0, 0, 0.9);
}

.andes-landings-typography--type-title.andes-landings-typography--size-xl {
  font-size: 28px;
  line-height: 31.5px;
}

.andes-landings-typography--type-title.andes-landings-typography--weight-bold {
  font-weight: 700;
}

.andes-landings-typography--type-title.andes-landings-typography--size-xs {
  font-size: 16px;
  line-height: 18px;
}

.andes-landings-typography--type-body.andes-landings-typography--size-l {
  font-size: 16px;
  line-height: 20px;
}

.andes-landings-typography--weight-regular {
  font-weight: 400;
}

.andes-landings-typography--type-link {
  color: #3483fa;
  text-decoration: none;
}

.andes-landings-typography--weight-semibold {
  font-weight: 600;
}

/* FAQ Items */
.andes-landings-faq {
  text-align: center;
}

.andes-landings-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  text-align: left;
}

.andes-landings-faq__item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.andes-landings-faq__item__button {
  align-items: center;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  justify-content: space-between;
  line-height: inherit;
  outline: inherit;
  text-align: inherit;
  width: 100%;
  padding: 24px 0;
}

.andes-landings-faq__item__button:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #3483fa, 0 0 0 5px rgba(65, 137, 230, 0.3);
  outline: 0;
}

.andes-landings-faq__item__chevron {
  color: #3483fa;
  height: 16px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.andes-landings-faq__item__answer {
  overflow: hidden;
  max-height: 0px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease !important;
}

/* Ensure content inside can expand properly */
.andes-landings-faq__item__answer p,
.andes-landings-faq__item__answer ul,
.andes-landings-faq__item__answer li {
  margin-bottom: 12px;
  line-height: 1.6 !important;
}

.andes-landings-faq__item__answer ul {
  padding-left: 20px;
}

/* Ensure chevron rotation works */
.andes-landings-faq__item__chevron svg {
  transition: transform 0.3s ease !important;
}

.andes-landings-faq__item__answer a,
.andes-landings-faq__item__answer li,
.andes-landings-faq__item__answer p,
.andes-landings-faq__item__answer strong {
  color: rgba(0, 0, 0, 0.9);
  -webkit-font-smoothing: antialiased;
}

.andes-landings-faq__item__answer a {
  color: #3483fa;
}

.andes-landings-faq__item__answer p:not(:last-child) {
  margin-bottom: 12px;
}

.andes-landings-faq__item__answer ol,
.andes-landings-faq__item__answer ul {
  margin: 0;
  padding-left: 24px;
}

.andes-landings-faq__item__answer ol:not(:last-child),
.andes-landings-faq__item__answer ul:not(:last-child) {
  margin-bottom: 24px;
}

.andes-landings-faq__item__answer li:not(:last-child) {
  margin-bottom: 8px;
}

.andes-landings-faq__expand-button {
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
  margin-top: 32px;
  border: none;
  padding: 0;
}

.pog-ui-faqs-section--mobile.andes-landings-grid {
  margin: 0 auto;
  max-width: 480px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .andes-landings-container--fixed {
    width: 100%;
  }
  
  .andes-landings-grid {
    column-gap: 16px;
  }
  
  .andes-landings-typography--type-title.andes-landings-typography--size-xl {
    font-size: 28px;
    line-height: 31.5px;
  }
}