/* ===== MOBILE FIRST APPROACH ===== */
/* Estilos base para mobile (até 768px) */

/* Reset e configurações base */
* {
    box-sizing: border-box;
}

body {
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container responsivo */
.container {
    width: 100%;
    padding: 0 1rem;
    max-width: 100%;
}

/* Header mobile-first */
.nav-light {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(246, 231, 216, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-light .container {
    padding: 0;
}

/* Logo mobile */
.nav-light img {
    height: 2.5rem;
    width: auto;
    max-width: 180px;
}

/* Menu mobile */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2d2d2d;
    cursor: pointer;
}

.desktop-nav {
    display: none;
}

/* Hero section mobile */
.hero-section {
    padding: 6rem 1rem 4rem;
    min-height: 100vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

/* Botões mobile */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary-light,
.btn-secondary-light {
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-light {
    background: linear-gradient(135deg, #676ef7 0%, #5a5ff5 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(103, 110, 247, 0.3);
}

.btn-secondary-light {
    background: transparent;
    color: #676ef7;
    border: 2px solid #676ef7;
}

/* Estatísticas mobile */
.stats-mobile {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item .number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #676ef7;
    display: block;
}

.stat-item .label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Cards mobile */
.card-light {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 231, 216, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Grid mobile */
.grid-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Grid para 3 cards centralizados */
.grid-3-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
}

/* Seções mobile */
.section-mobile {
    padding: 2rem 1rem;
}

/* Seção com espaçamento reduzido */
.section-compact {
    padding: 1.5rem 1rem;
}

.section-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    color: #6b7280;
}

/* Espaçamentos mobile */
.mb-mobile {
    margin-bottom: 1.5rem;
}

.mt-mobile {
    margin-top: 1.5rem;
}

.py-mobile {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Elementos decorativos apenas desktop */
.hero-decorative {
    display: none;
}

@media (min-width: 1024px) {
    .hero-decorative {
        display: block;
    }
}

/* ===== TABLET STYLES (768px+) ===== */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
        max-width: 768px;
        margin: 0 auto;
    }
    
    .btn-group {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-primary-light,
    .btn-secondary-light {
        width: auto;
        padding: 1rem 2rem;
    }
    
    .grid-mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .grid-3-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-mobile {
        padding: 3rem 2rem;
    }
    
    .section-compact {
        padding: 2rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .stats-mobile {
        gap: 2rem;
    }
}

/* ===== DESKTOP STYLES (1024px+) ===== */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 3rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
    
    .hero-section {
        padding: 8rem 3rem 6rem;
        text-align: left;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        width: 100%;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 4rem;
        text-align: left;
    }
    
    .hero-content p {
        text-align: left;
        max-width: 500px;
        font-size: 1.125rem;
    }
    
    .btn-group {
        justify-content: flex-start;
        flex-direction: row;
    }
    
    .hero-content .stats-mobile {
        justify-content: flex-start;
        gap: 3rem;
    }
    
    .grid-mobile {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .grid-3-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .section-mobile {
        padding: 4rem 3rem;
    }
    
    .section-compact {
        padding: 2.5rem 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .nav-light img {
        height: 3rem;
        max-width: 200px;
    }
}

/* ===== LARGE DESKTOP STYLES (1280px+) ===== */
@media (min-width: 1280px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .grid-mobile {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .grid-3-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .section-mobile {
        padding: 5rem 3rem;
    }
    
    .section-compact {
        padding: 3rem 3rem;
    }
}

/* ===== MOBILE MENU STYLES ===== */
.mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(246, 231, 216, 0.3);
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu.show {
    display: block;
}

/* ===== HERO ENHANCEMENTS ===== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

/* ===== TYPOGRAPHY MOBILE ===== */
.hero-content h1 {
    /* Removido gradiente para permitir cores específicas por span */
}

/* ===== ENHANCED HOVER EFFECTS ===== */
.card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.section-mobile {
    overflow: hidden;
}

/* Animações personalizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Novas animações para transições dinâmicas */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reset de links - remove underlines */
a {
    text-decoration: none;
}

nav a {
    text-decoration: none !important;
}

/* Classes de utilidade para animações */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInFromLeft 1s ease-out;
}

.animate-slide-in-right {
    animation: slideInFromRight 1s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-pulse-custom {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-gradient {
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

/* Transições suaves para seções */
.section-transition {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero section sempre visível */
#home {
    opacity: 1 !important;
    transform: none !important;
}

/* Fundos dinâmicos com cores mais claras */
.bg-cream-light {
    background-color: #f6e7d8;
    color: #2d2d2d;
}

/* Estilos para a nova hero section */
.hero-image-overlay {
    position: relative;
    overflow: hidden;
}

.hero-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(103,110,247,0.1) 100%);
    z-index: 1;
}

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

.floating-card {
    animation: float 6s ease-in-out infinite;
    transform-origin: center;
}

.floating-card:nth-child(2) {
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes heroImagePan {
    0%, 100% { transform: scale(1.05) translateX(0); }
    50% { transform: scale(1.1) translateX(-20px); }
}

.hero-bg-image {
    animation: heroImagePan 20s ease-in-out infinite;
}

.gallery-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.bg-cream-gradient {
    background: linear-gradient(135deg, #f6e7d8 0%, #fff8f0 50%, #f6e7d8 100%);
    color: #2d2d2d;
}

.bg-white-soft {
    background-color: #fefefe;
    color: #2d2d2d;
}

.bg-purple-light {
    background: linear-gradient(135deg, #f8f7ff 0%, #f0efff 100%);
    color: #2d2d2d;
}

.bg-dynamic-1 {
    background: linear-gradient(135deg, #f6e7d8 0%, #ffffff 50%, #f6e7d8 100%);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: #2d2d2d;
}

.bg-dynamic-2 {
    background: linear-gradient(45deg, #ffffff 0%, #f6e7d8 25%, #ffffff 50%, #f6e7d8 75%, #ffffff 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    color: #2d2d2d;
}

.bg-dynamic-3 {
    background: linear-gradient(135deg, #f8f7ff 0%, #f6e7d8 50%, #ffffff 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #2d2d2d;
}

.bg-dynamic-4 {
    background: linear-gradient(45deg, #f6e7d8 0%, #ffffff 30%, #f8f7ff 70%, #f6e7d8 100%);
    background-size: 400% 400%;
    animation: gradientShift 18s ease infinite;
    color: #2d2d2d;
}

/* Texto adaptado para fundos claros */
.text-dark {
    color: #2d2d2d !important;
}

.text-purple-darker {
    color: #5a5ff5 !important;
}

.text-gray-600 {
    color: #6b7280 !important;
}

.text-gray-700 {
    color: #374151 !important;
}

/* Cartões com fundos claros */
.card-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 231, 216, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #2d2d2d;
}

.card-cream {
    background: rgba(246, 231, 216, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 231, 216, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #2d2d2d;
}

/* Efeitos de hover personalizados */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(103, 110, 247, 0.15);
}

.card-light:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

/* Botões com novo estilo */
.btn-primary-light {
    background: linear-gradient(135deg, #676ef7 0%, #5a5ff5 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 110, 247, 0.3);
}

.btn-primary-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 110, 247, 0.4);
}

.btn-secondary-light {
    background: transparent;
    color: #676ef7;
    border: 2px solid #676ef7;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-light:hover {
    background: #676ef7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 110, 247, 0.3);
}

/* Navegação com novo estilo */
.nav-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(246, 231, 216, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-light a {
    color: #2d2d2d !important;
    transition: color 0.3s ease;
}

.nav-light a:hover {
    color: #676ef7 !important;
}

/* Seções com layouts dinâmicos */
.section-alternate {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-slide-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-fade-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-fade-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Elementos interativos melhorados */
.interactive-element {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: scale(1.05);
}

/* Gradientes personalizados */
.gradient-text {
    background: linear-gradient(135deg, #676ef7, #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-border {
    background: linear-gradient(135deg, #676ef7, #f6e7d8);
    padding: 2px;
    border-radius: 12px;
}

.gradient-border-content {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
}

/* Elementos flutuantes */
.floating-element {
    animation: float 4s ease-in-out infinite;
}

.floating-element:nth-child(2n) {
    animation-delay: -2s;
}

/* Efeitos de scroll suave */
html {
    scroll-behavior: smooth;
}

/* Personalização da scrollbar para tema claro */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f6e7d8;
}

::-webkit-scrollbar-thumb {
    background: #676ef7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a5ff5;
}

/* Efeitos de foco melhorados */
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #676ef7;
    outline-offset: 2px;
}

/* Animação de loading para botões */
.btn-loading {
    position: relative;
    color: transparent;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #676ef7;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade melhorada */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .lg\:text-7xl {
        font-size: 3rem;
    }
    
    .section-transition {
        padding: 3rem 1rem;
    }
}

/* Efeitos de paralaxe sutil */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Estados de foco melhorados para acessibilidade */
.focus-ring:focus {
    outline: 2px solid #676ef7;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Melhorias tipográficas */
.text-balance {
    text-wrap: balance;
}

/* Efeitos de glassmorphism para tema claro */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(246, 231, 216, 0.3);
}

.glass-cream {
    background: rgba(246, 231, 216, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(246, 231, 216, 0.4);
}

/* Sombras personalizadas */
.shadow-purple {
    box-shadow: 0 10px 30px rgba(103, 110, 247, 0.2);
}

.shadow-cream {
    box-shadow: 0 10px 30px rgba(246, 231, 216, 0.3);
}

.shadow-soft {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Efeitos de hover para links */
.link-underline {
    position: relative;
    text-decoration: none;
}

.link-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #676ef7;
    transition: width 0.3s ease;
}

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

/* Indicador de seção ativa na navegação */
.nav-active {
    color: #676ef7 !important;
    position: relative;
}

.nav-active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #676ef7;
}

/* Formulários estilizados */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(246, 231, 216, 0.5);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #2d2d2d;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #676ef7;
    background: rgba(255, 255, 255, 1);
    outline: none;
    box-shadow: 0 0 0 3px rgba(103, 110, 247, 0.1);
}

.loading-shimmer {
    background: linear-gradient(90deg, 
        rgba(246, 231, 216, 0.1) 25%, 
        rgba(246, 231, 216, 0.3) 50%, 
        rgba(246, 231, 216, 0.1) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

#case-modal {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

#case-modal iframe {
    border: none;
    border-radius: 12px;
}

#franchise-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

#franchise-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.case-item {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.z-60 {
    z-index: 60;
}

/* Melhorias nos formulários */
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(246, 231, 216, 0.5);
    color: #2d2d2d;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #676ef7;
    box-shadow: 0 0 0 3px rgba(103, 110, 247, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

/* Ajustes para select */
.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    #case-modal .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #franchise-btn {
        bottom: 15px;
        left: 15px;
        transform: scale(0.9);
    }
    
    #franchise-btn span {
        display: none;
    }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-float i {
    margin: 0;
    line-height: 1;
}

/* Tooltip do WhatsApp */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2d2d2d;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #2d2d2d;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsividade para mobile do WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
} 