body {
    font-size: 18px;
}

.auth img {
    max-width: 150px;
}

.container {
    max-width: 85%;
  }
  
  .icon-link > .bi {
    width: .75em;
    height: .75em;
  }
  
  /*
   * Custom translucent site header
   */
  
  .site-header {
    background-color: rgba(0, 0, 0, .85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
  }
  .site-header a {
    color: #8e8e8e;
    transition: color .15s ease-in-out;
  }
  .site-header a:hover {
    color: #fff;
    text-decoration: none;
  }

  .bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  .b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }

  .b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
  }

  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
  }

  .bd-mode-toggle {
    z-index: 1500;
  }

  .bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
  }

/* custom css */
.navbar {
    background-color: #00284f;
}

.nav-link {
    color: #fff;
}

.btn{
    border-radius: 20px;
    padding: 4px 20px 7px;
}

.btn-primary {
    background-image: linear-gradient(-70deg, #ce5209, #e25106, #f86107);
    border-color: #ff7320;
}

.btn-blue {
    background-image: linear-gradient(-70deg, #00284f, #012f5c, #00203f);
    border-color: #00284f;
}

.section-home {
  background-color: #e0e0e0 !important;
  height: 70vh;
}

.img-home {
    max-width: 500px;
}

.display-3 {
    color: #00284f;
    font-size: 46px;
}

.section-home h3 span {
    color: #00284f;
    font-weight: 700;
}

.services{
    padding: 80px 0 30px;
}

.section-padding h4 {
    font-size: 40px;
}

.item-box {
    background: #00284f;
    color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.item-box .icon-bord-shad {
    margin: auto;
    margin-bottom: 15px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00468b;
}

.item-box .icon-bord-shad i {
    font-size: 40px;
}

.item-box .cont p {
    font-size: 17px;
}

.plans ul li i {
  font-size: 22px;
  color: #00284f;
  margin-right: 5px;
}

.bg-primary {
  background-color: #00284f !important;
}

.bg-warning {
    background-color: #ff7320 !important;
}

.text-warning {
    color: #ff7320 !important;
}

.btn-warning {
    background: #ff7320;
    border-color: #ff7320;
}

.plans .card-body {
  background: #f8f9fa;
}

h1.pricing-card-title {
  font-size: 36px;
  font-weight: 700;
}

/**
 * Catalogo Virtual - Front Styles
 */

/* Pricing Section */
.pricing-prices {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-monthly,
.price-yearly {
    width: 100%;
}

.price-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Switch */
.pricing-label {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.pricing-label.text-muted {
    opacity: 0.6;
}

#pricingSwitch {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

#pricingSwitch:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Plans Section */
.plans .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plans .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.plans .card-header {
    background: linear-gradient(135deg, #00407e 0%, #00284f 100%);
}

.pricing-card-title {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Product Cards */
.product-card img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════
   Affiliate Landing Page
   ═══════════════════════════════════════════════ */

.min-vh-75 {
    min-height: 75vh;
}

/* Hover lift effect for cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Affiliate pricing switch */
#affiliatePricingSwitch {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

#affiliatePricingSwitch:checked {
    background-color: #ffc107;
    border-color: #ffc107;
}

.affiliate-pricing-label {
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        max-width: 95%;
    }

    .services{
        padding: 60px 0 10px;
    }

    .affiliate-hero {
        text-align: center;
    }

    .affiliate-hero .d-flex {
        justify-content: center;
    }

  .section-padding h4 {
      font-size: 28px;
  }

  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }

  .section-home {
      height: 90vh;
  }

  .img-home {
      max-width: 100%;
  }

  .display-3 {
      font-size: 28px;
  }

  .section-home h3 {
      font-size: 20px;
  }

  .section-home {
        min-height: auto;
        padding: 40px 15px;
    }
    
    .pricing-card-title {
        font-size: 1.8rem;
    }
    
    .ml-30 {
        margin-left: 15px;
    }

    .affiliate-hero h1 {
        font-size: 2rem;
    }

    .affiliate-hero .lead {
        font-size: 1.1rem;
    }

    .min-vh-75 {
        min-height: auto;
    }

    
}