:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --success-color: #06d6a0;
    --warning-color: #ffd166;
    --white: #ffffff;
    --light-gray: #f0f4f8;
    --mid-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #1a2238;
    --light-text: #6b7c93;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    background-color: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75em;
    color: var(--dark-gray);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1.5rem;
}

.btn {
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.01em;
    transition: var(--transition);
    text-transform: none;
    box-shadow: var(--shadow-sm);
    position: relative !important;
    z-index:1000 !important;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(30, 80, 200, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30, 80, 200, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

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

/* Estilo para ícones sociais */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    margin: 0 0.5rem;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.social-icon.whatsapp { 
    background: #25D366; 
}

.social-icon.facebook { 
    background: #3b5998; 
}

.social-icon.twitter { 
    background: #1DA1F2; 
}

/* Radius aprimorado */
.rounded-4 { 
    border-radius: 1.5rem !important; 
}

/* Navbar customization */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 600;
    margin: 0 12px;
    padding: 0.5rem 0.75rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active:after {
    width: 80%;
}

/* Hero section */
.hero-section {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 9rem 0 12rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f0f4f8' fill-opacity='1' d='M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,165.3C672,171,768,149,864,149.3C960,149,1056,171,1152,176C1248,181,1344,171,1392,165.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* About Section CSS */
.about-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

/* Plans section */
.plans-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.plans-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.plan-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    background-color: var(--white);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-header {
    padding: 2rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-header:before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.highlight-plan .plan-header {
    background-color: var(--accent-color);
    background-image: linear-gradient(135deg, var(--accent-color), #ff9a4d);
}

.highlight-plan {
    position: relative;
    z-index: 2;
}

.highlight-plan:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-features {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.plan-price small {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 500;
}

.plan-feature-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.plan-features button {
    margin-top: auto;
    font-weight: 600;
}

.bi-check-circle-fill {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.highlight-plan .bi-check-circle-fill {
    color: var(--accent-color);
}

/* Why us section */
.why-us-section {
    padding: 8rem 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.why-us-section:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(45, 120, 255, 0.05);
    z-index: 0;
}

.why-us-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 122, 34, 0.05);
    z-index: 0;
}

.why-us-card {
    padding: 2.5rem;
    text-align: center;
    border-radius: 16px;
    background-color: white;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border-bottom: 4px solid transparent;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--primary-color);
}

.why-us-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.why-us-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.why-us-text {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact section */
.contact-section {
    padding: 8rem 0;
    background-color: white;
    position: relative;
}

.contact-info {
    padding: 2.5rem;
    background-color: var(--light-gray);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}


.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.whatsapp { background: #25D366; }
.social-icon.facebook { background: #3b5998; }
.social-icon.twitter { background: #1DA1F2; }

.why-us-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.why-us-card {
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.why-us-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-info {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 15px;
}

.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0;
}

.bg-gradient {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important;
}

/* Floating button */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: green;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
}

.floating-button i {
    font-size: 24px;
}

/* Main Promotion Section */
.promo-section {
    background: linear-gradient(135deg, #fff 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.promo-section .container {
    position: relative;
    z-index: 1;
}

.promo-section h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 800;
    position: relative;
    color: var(--dark-gray);
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

.promo-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.promo-wrapper {
    position: relative;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    overflow: hidden;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.promo-wrapper:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Swiper Container */
.promo-swiper {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.swiper-slide-img,
.swiper-slide-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

/* Zoom suave ao hover */
.swiper-slide:hover .swiper-slide-img,
.swiper-slide:hover .swiper-slide-video {
    transform: scale(1.05);
}

/* Wrapper para vídeos centralizados */
.swiper-slide-video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

@media (max-width: 768px) {
  /* Container com altura fixa para manter consistência */
  .promo-swiper {
    height: 300px;
  }

  /* Imagem: mostre tudo, sem corte */
  .swiper-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
  }

  /* Vídeo: preencha e corte (zoom/crop) */
  .swiper-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
  }

  /* Garante que os controles do vídeo fiquem dentro */
  .swiper-slide-video-wrapper {
    overflow: visible;
  }
  video.swiper-slide-video {
    display: block;
    max-height: 100%;
  }
}

/* Conteúdo */
.promo-content {
    width: 100%;
    max-width: 100%;
    padding: 40px 30px;
    color: var(--dark-gray);
    text-align: left;
    pointer-events: auto;
    background: var(--white);
    border-left: 5px solid transparent;
    border-image: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    border-image-slice: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(30, 80, 200, 0.2);
    transition: var(--transition);
}

.promo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 80, 200, 0.3);
}

.promo-badge.new-badge {
    background: linear-gradient(45deg, var(--success-color), #06e9a5);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.9; box-shadow: 0 5px 20px rgba(5, 206, 145, 0.5); }
}

.promo-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.promo-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-pricing {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #808080;
    font-weight: 500;
    position: relative;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background-color: rgba(255, 65, 65, 0.6);
    transform: rotate(-7deg);
}

.promo-price {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 800;
}

.discount-badge {
    background: linear-gradient(45deg, #ff4757, #ff6b81);
    color: white;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
    animation: fade 3s infinite alternate;
}

@keyframes fade {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.promo-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 80, 200, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.promo-cta:hover::before {
    opacity: 1;
}

.promo-cta:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(30, 80, 200, 0.4);
}

.promo-cta:active {
    transform: translateY(0) scale(0.98);
}

/* Countdown Timer */
.promo-countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.countdown-item {
    text-align: center;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: var(--shadow-sm);
    min-width: 60px;
}

.countdown-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-gray);
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-divider {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray);
}

/* Outras Promoções */
.other-promotions {
    padding: 2rem 15px 5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-gray);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: var(--shadow-md) !important;
    transition: var(--transition) !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--white) !important;
    transform: scale(1.1) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    font-weight: bold !important;
    color: var(--primary-color) !important;
}

.swiper.other-promos-swiper {
    padding: 15px 5px 30px;
    margin: -15px -5px 0;
}

.swiper.other-promos-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    overflow: visible;
    transition: var(--transition);
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.swiper.other-promos-swiper .swiper-slide:hover {
    transform: translateY(-8px)
}

.promo-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.promo-card-img-wrapper img,
.promo-card-img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-card-img-wrapper:hover img,
.promo-card-img-wrapper:hover video {
    transform: scale(1.08);
}

.promo-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.promo-tag.limited {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
}

.promo-card-body {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-card-body h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-gray);
    transition: var(--transition);
}

.promo-card:hover .promo-card-body h4 {
    color: var(--primary-color);
}

.promo-card-desc {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
}

.promo-card-pricing {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-card-price-wrapper {
    display: flex;
    flex-direction: column;
}

.promo-card-pricing .original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #808080;
    margin-bottom: 4px;
}

.promo-card-pricing .promo-price {
    color: var(--success-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.savings-tag {
    background-color: #ffecee;
    color: #ff4757;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.promo-card-btn {
    margin-top: 20px;
    text-align: center;
    display: block;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promo-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.promo-card-btn:hover::before {
    opacity: 1;
}

.promo-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 80, 200, 0.3);
}

/* Empty State */
.empty-promotions {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.empty-promotions svg {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: var(--gray);
}

.empty-promotions h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.empty-promotions p {
    color: var(--light-text);
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive for all screens */
@media (min-width: 768px) {
    .promo-wrapper {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        height: 500px;
    }

    .promo-swiper {
        flex: 1;
        max-width: 60%;
        height: auto;
    }

    .promo-content {
        width: 40%;
        padding: 40px;
    }
    
    .promo-title {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .promo-swiper {
        max-width: 65%;
    }
    
    .promo-content {
        width: 35%;
        padding: 50px;
    }
    
    .promo-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .promo-section {
        padding: 3rem 0;
    }
    
    .plans-section {
        padding: 3rem 0;
    }
    .promo-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-description {
        font-size: 1rem;
    }
    
    .promo-pricing {
        font-size: 1.2rem;
    }
    
    .promo-price {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .promo-card-body h4 {
        font-size: 1.1rem;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 6px 8px;
    }
    
    .countdown-number {
        font-size: 1rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
}



@media (max-width: 480px) {
    .promo-countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
}