/* ==========================================
   MGP IoT Services - Styles
   ========================================== */

/* ==========================================
   RESET E VARIÁVEIS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ✨ MODIFICADO - TRANSIÇÕES MAIS SUAVES ✨ */
:root {
    /* Cores Principais MGP */
    --primary-orange: #FF5800;
    --primary-blue-dark: #013F7F;
    --primary-blue: #1183D4;
    
    /* Cores Secundárias */
    --secondary-orange-light: #EB6D2B;
    --secondary-orange-lighter: #FD8546;
    --secondary-blue-light: #42A1E0;
    
    /* Cores Neutras */
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e8f4f8;
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    /* 🔥 TRANSIÇÕES SUAVIZADAS 🔥 */
    --transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Espaçamentos */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* ==========================================
   BASE
   ========================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==========================================
   HEADER / MENU
   ========================================== */
#main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

#main-header.hidden {
    transform: translateY(-100%);
}

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

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

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 18px;
    margin: 0;
}

.nav-desktop a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-client-area {
    background: var(--primary-blue);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-client-area:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    background: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

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

.mobile-menu nav li {
    border-bottom: 1px solid var(--gray-light);
}

.mobile-menu nav a {
    display: block;
    padding: 15px 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-menu nav a:hover {
    color: var(--primary-orange);
    padding-left: 20px;
}

/* ==========================================
   HERO BANNER
   ========================================== */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================
   BOTÕES
   ========================================== */
/* ✨ MODIFICADO - HOVER MAIS SUAVE ✨ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* 🔥 SUAVIZADO */
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange-light));
    color: white;
    box-shadow: 0 5px 20px rgba(255, 88, 0, 0.3);
}

/* 🔥 HOVER MENOS EXAGERADO */
.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 88, 0, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* 🔥 HOVER SUAVIZADO */
.btn-whatsapp-large:hover {
    background: #1faa52;
    transform: scale(1.03);
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   CARROSSÉIS
   ========================================== */
.carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 40px;
    overflow: hidden;
}

/* ✨ MODIFICADO - SCROLL MAIS SUAVE ✨ */
.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 25px 10px;
    margin: 0 -10px;
    scroll-padding: 0 50%;
    scroll-padding-inline: 50%;
    
    /* 🔥 SCROLL SUAVIZADO */
    -webkit-overflow-scrolling: touch;
    scroll-snap-stop: normal; /* MUDADO de 'always' para 'normal' */
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel > * {
    flex: 0 0 auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    scroll-margin: 0 50%;
    scroll-margin-inline: 50%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* ==========================================
   PLANOS DE INTERNET
   ========================================== */
.planos-section {
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 50%, var(--gray-medium) 100%);
}

.planos-carousel > * {
    width: 350px;
}

/* ✨ MODIFICADO - HOVER MAIS ELEGANTE ✨ */
.plan-card {
    background: white;
    border-radius: 25px;
    padding: 35px 25px 35px;
    box-shadow: var(--shadow-md);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); /* 🔥 BOUNCE SUAVE */
    position: relative;
    border: 3px solid transparent;
}

/* 🔥 MOVIMENTO REDUZIDO */
.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 40px rgba(255, 88, 0, 0.25);
}

.plan-card.premium {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(17, 131, 212, 0.25);
}

.plan-card.ultra-premium {
    border-color: #FFD700;
    background: linear-gradient(135deg, #fff 0%, #fffdf7 100%);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.plan-card.basic {
    opacity: 0.9;
}

.plan-badge {
    position: absolute;
    right: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
}

.plan-badge.best-seller {
    background: var(--primary-orange);
    top: 10px;
}

.plan-badge.cost-benefit {
    background: var(--primary-blue);
    top: 30px;
}

.plan-badge.premium-badge {
    background: var(--primary-blue);
    top: 10px;
}

.plan-badge.ultra-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--text-dark);
    top: 10px;
}

.plan-badge.tech-badge {
    background: var(--primary-blue-dark);
    font-size: 0.55rem;
    padding: 4px 8px;
    top: 30px;
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.plan-card.featured .plan-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange-light));
}

.plan-card.ultra-premium .plan-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.plan-name {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.plan-price {
    text-align: center;
    margin: 20px 0;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.plan-price .amount {
    font-size: 3.5rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.plan-price .period {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.plan-features {
    list-style: none;
    margin: 25px 0;
}

.plan-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.plan-features li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.plan-extra {
    background: var(--gray-light);
    padding: 15px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
}

.plan-extra p {
    margin: 0;
    color: var(--text-dark);
}

.plan-extra strong {
    color: var(--primary-orange);
}

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

/* ==========================================
   PERGUNTAS QUE VENDEM
   ========================================== */
.questions-section {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: white;
}

.questions-section .section-title {
    color: white;
}

.questions-section .section-title::after {
    background: white;
}

.questions-carousel > * {
    width: 320px;
}

/* ✨ MODIFICADO - HOVER SUAVIZADO ✨ */
.question-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: var(--text-dark);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); /* 🔥 BOUNCE SUAVE */
}

/* 🔥 MOVIMENTO REDUZIDO */
.question-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.question-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.question-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
}

.question-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* ==========================================
   SERVIÇOS
   ========================================== */
.services-section {
    background: var(--gray-light);
}

.services-carousel > * {
    width: 180px;
}

/* ✨ MODIFICADO - HOVER SUAVIZADO ✨ */
.service-item {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); /* 🔥 BOUNCE SUAVE */
    box-shadow: var(--shadow-sm);
}

/* 🔥 MOVIMENTO REDUZIDO */
.service-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* ✨ MODIFICADO - ÍCONE COM ROTAÇÃO SUAVE ✨ */
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* 🔥 SUAVIZADO */
}

/* 🔥 ROTAÇÃO LEVE */
.service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange-light));
    transform: scale(1.08) rotate(5deg);
}

.service-item h3 {
    font-size: 1rem;
    color: var(--primary-blue-dark);
    font-weight: 600;
}

/* ==========================================
   BENEFÍCIOS
   ========================================== */
.benefits-section {
    background: var(--white);
}

.benefits-carousel > * {
    width: 280px;
}

/* ✨ MODIFICADO - HOVER SUAVIZADO ✨ */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); /* 🔥 BOUNCE SUAVE */
}

/* 🔥 MOVIMENTO REDUZIDO */
.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ==========================================
   SERVIÇOS DETALHADOS
   ========================================== */
.detailed-services-section {
    background: var(--gray-medium);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.services-row {
    position: relative;
}

.services-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 25px 10px;
    margin: 0 -10px;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.services-carousel > * {
    flex: 0 0 auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    width: 320px;
}

.detailed-service-card {
    background: white;
    border-radius: 20px;
    padding: 50px 25px 35px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    border: 3px solid transparent;
}

.detailed-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.detailed-service-card.featured {
    border-color: var(--primary-orange);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.service-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.detailed-service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
}

.detailed-service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin: 20px 0;
}

/* ==========================================
   VÍDEO
   ========================================== */
.video-section {
    background: var(--white);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================
   PROMOÇÕES
   ========================================== */
.promotions-section {
    background: var(--gray-light);
}

.promotions-carousel > * {
    width: 340px;
}

/* ✨ MODIFICADO - HOVER SUAVIZADO ✨ */
.promotion-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); /* 🔥 BOUNCE SUAVE */
    aspect-ratio: 0.8;
    position: relative;
    height: 425px;
}

/* 🔥 MOVIMENTO REDUZIDO */
.promotion-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.promotion-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.promotion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    color: white;
    z-index: 2;
}

.promotion-content h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.promotion-content p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ==========================================
   INSTAGRAM
   ========================================== */
.instagram-section {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.instagram-section .section-title {
    color: white;
}

.instagram-section .section-title::after {
    background: white;
}

.instagram-carousel > * {
    width: 280px;
}

.instagram-post {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 3rem;
    color: white;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-cta {
    text-align: center;
    margin-top: 40px;
}

.instagram-cta .btn-primary {
    background: white;
    color: #bc1888;
    box-shadow: var(--shadow-md);
}

.instagram-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* ==========================================
   AVALIAÇÕES
   ========================================== */
.testimonials-section {
    background: var(--white);
}

.testimonials-carousel > * {
    width: 350px;
}

/* ✨ MODIFICADO - HOVER SUAVIZADO ✨ */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); /* 🔥 BOUNCE SUAVE */
}

/* 🔥 MOVIMENTO REDUZIDO */
.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    color: var(--primary-blue-dark);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ==========================================
   QUEM SOMOS
   ========================================== */
.about-section {
    background: var(--gray-medium);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-text p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-highlight {
    font-size: 1.3rem !important;
    color: var(--primary-orange);
    font-weight: 700;
    margin-top: 30px !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1rem;
}

/* ==========================================
   COBERTURA - CIDADES
   ========================================== */
.coverage-section {
    background: var(--white);
}

.cities-carousel > * {
    width: auto;
}

.city-chip {
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.city-chip:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.city-chip.featured {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.city-chip i {
    margin-right: 8px;
}

/* ==========================================
   PONTOS DE ATENDIMENTO
   ========================================== */
.stores-section {
    background: var(--gray-light);
}

.stores-carousel > * {
    width: 350px;
}

/* ✨ MODIFICADO - HOVER SUAVIZADO ✨ */
.store-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); /* 🔥 BOUNCE SUAVE */
    text-align: center;
}

/* 🔥 MOVIMENTO REDUZIDO */
.store-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.store-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.store-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
}

.store-address {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.store-address i {
    color: var(--primary-orange);
    margin-right: 8px;
}

/* ==========================================
   CONTATO
   ========================================== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    border: 2px solid var(--gray-medium);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-link {
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition);
}

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

.contact-link.whatsapp {
    color: #25D366;
}

.contact-link.whatsapp:hover {
    color: #1faa52;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   TRABALHE CONOSCO
   ========================================== */
.careers-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue-light) 100%);
    color: white;
}

.careers-section .section-title {
    color: white;
}

.careers-section .section-title::after {
    background: white;
}

.careers-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.careers-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ==========================================
   REDES SOCIAIS
   ========================================== */
.social-section {
    background: var(--gray-light);
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px 22px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    min-width: 110px;
}

.social-btn:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.social-btn i {
    font-size: 1.6rem;
}

.social-btn span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-btn.instagram span {
    color: white;
}

.social-btn.facebook {
    background: #1877F2;
    color: white;
}

.social-btn.facebook span {
    color: white;
}

.social-btn.tiktok {
    background: #000000;
    color: white;
}

.social-btn.tiktok span {
    color: white;
}

.social-btn.linkedin {
    background: #0077B5;
    color: white;
}

.social-btn.linkedin span {
    color: white;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1.1rem;
    opacity: 0.95;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--primary-orange);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-bottom a {
    color: white;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

.footer-cnpj {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ==========================================
   POLÍTICA DE PRIVACIDADE
   ========================================== */
.privacy-section {
    background: var(--gray-light);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h3 {
    color: var(--primary-blue-dark);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.privacy-content p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.privacy-content a {
    color: var(--primary-blue);
    font-weight: 600;
}

.privacy-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================== */
/* ✨ MODIFICADO - PULSE MAIS SUAVE ✨ */
/* 🔥 ANIMAÇÃO PULSE REDUZIDA */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
        transform: scale(1.05); /* REDUZIDO de 1.1 para 1.05 */
    }
}

/* DESABILITADO - Agora gerenciado pelo React FloatingWhatsApp */
.whatsapp-float-DISABLED {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulse 3s infinite;
}

.whatsapp-float-DISABLED:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    animation: none;
}

/* ==========================================
   BOTÃO VOLTAR AO TOPO - DESABILITADO
   Agora gerenciado pelo React
   ========================================== */
.back-to-top-DISABLED {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top-DISABLED.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-DISABLED:hover {
    background: var(--primary-orange);
    transform: translateY(-3px) scale(1.1);
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 1024px) {
    .hero-image {
        max-height: 400px;
    }
    
    .hero-image img {
        max-height: 400px;
    }
    
    .carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (PRIORIDADE)
   ========================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero-image {
        max-height: 200px;
    }
    
    .hero-image img {
        max-height: 200px;
        object-fit: cover;
        object-position: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    /* ===== CARROSSÉIS - FLUXO CONTÍNUO SEM BORDAS ===== */
    .carousel-wrapper {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        margin-top: 25px;
        overflow: visible;
    }
    
    .carousel-btn {
        display: none !important;
    }
    
    .carousel {
        padding: 15px 0;
        gap: 12px;
        scroll-padding-inline-start: calc(50% - 120px);
        scroll-padding-inline-end: calc(50% - 120px);
        padding-left: calc(50vw - 120px);
        padding-right: calc(50vw - 120px);
    }
    
    /* Cards MENORES - 240px */
    .planos-carousel > * {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .questions-carousel > * {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .testimonials-carousel > * {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .stores-carousel > * {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .promotions-carousel > * {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .promotion-card {
        height: 300px;
    }
    
    .services-carousel > * {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .cities-carousel > * {
        min-width: auto;
    }
    
    .instagram-carousel > * {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .benefits-carousel > * {
        width: 240px;
        min-width: 240px;
        max-width: 240px;
    }
    
    .carousel > *:first-child {
        margin-left: 0;
    }
    
    .carousel > *:last-child {
        margin-right: 0;
    }
    
    /* ===== CARDS - TAMANHOS REDUZIDOS ===== */
    
    .plan-card {
        padding: 25px 18px 25px;
        border-radius: 18px;
    }
    
    .plan-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin: 15px auto 15px;
    }
    
    .plan-name {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .plan-price {
        margin-bottom: 12px;
    }
    
    .plan-price .currency {
        font-size: 1rem;
    }
    
    .plan-price .amount {
        font-size: 2rem;
    }
    
    .plan-price .period {
        font-size: 0.75rem;
    }
    
    .plan-features {
        margin-bottom: 15px;
    }
    
    .plan-features li {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    .plan-badge {
        font-size: 0.5rem;
        padding: 3px 8px;
        border-radius: 10px;
    }
    
    .question-card {
        padding: 20px;
        border-radius: 18px;
    }
    
    .question-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .question-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .question-card p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .promotion-content {
        padding: 20px 15px;
    }
    
    .promotion-content h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .promotion-content p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .service-card {
        padding: 18px;
        border-radius: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-card h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .service-card p {
        font-size: 0.75rem;
    }
    
    .benefit-card {
        padding: 20px;
        border-radius: 18px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
    }
    
    .testimonial-card {
        padding: 20px;
        border-radius: 18px;
    }
    
    .stars {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .testimonial-author {
        font-size: 0.85rem;
    }
    
    .author-role {
        font-size: 0.75rem;
    }
    
    .instagram-post {
        border-radius: 15px;
    }
    
    .post-image {
        height: 240px;
        border-radius: 15px 15px 0 0;
    }
    
    .post-info {
        padding: 12px;
    }
    
    .post-likes {
        font-size: 0.75rem;
    }
    
    .post-caption {
        font-size: 0.75rem;
    }
    
    .store-card {
        padding: 18px;
        border-radius: 15px;
    }
    
    .store-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .store-info {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section ul li {
        font-size: 0.8rem;
    }
    
    /* DESABILITADO - Gerenciado pelo React */
    .whatsapp-float-DISABLED {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .back-to-top-DISABLED {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .detailed-service-card {
        margin: 0 auto;
        padding: 25px 20px;
    }
    
    .detailed-service-card h3 {
        font-size: 1.3rem;
    }
    
    .detailed-service-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .plan-price .amount {
        font-size: 2rem;
    }
}

/* ==========================================
   FIX MOBILE - FLUXO CONTÍNUO
   ========================================== */
@media (max-width: 768px) {
    .carousel {
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    @media (max-width: 360px) {
        .carousel {
            padding-left: calc(50vw - 110px);
            padding-right: calc(50vw - 110px);
        }
        
        .planos-carousel > *,
        .questions-carousel > *,
        .testimonials-carousel > *,
        .stores-carousel > *,
        .promotions-carousel > *,
        .services-carousel > *,
        .instagram-carousel > *,
        .benefits-carousel > * {
            width: 220px;
            min-width: 220px;
            max-width: 220px;
        }
        
        .promotion-card {
            height: 275px;
        }
    }
}