.elementor-65 .elementor-element.elementor-element-1fdc5ca{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-091676d *//* Configurações Iniciais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Temas - Claro e Escuro */
:root {
    /* Variáveis de Tema - Modo Escuro (Padrão) */
    --background: #0a0a0f;
    --surface: #151520;
    --surface-2: #1e1e2d;
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #8b5cf6;
    
    /* Cores Funcionais */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Cores de Texto */
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    
    /* Efeitos */
    --hover: rgba(255, 255, 255, 0.05);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.2);
}

/* Tema Claro */
:root.light-theme {
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #3730a3;
    --text: #0f172a;
    --text-secondary: #475569;
    --border: rgba(0, 0, 0, 0.1);
    --hover: rgba(0, 0, 0, 0.03);
    --shadow-color: rgba(0, 0, 0, 0.05);
}

body {
    background: var(--background);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Toggle de Tema */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.dark-icon, .light-icon {
    font-size: 1.25rem;
    transition: var(--transition);
}

.light-icon {
    display: none;
}

:root.light-theme .dark-icon {
    display: none;
}

:root.light-theme .light-icon {
    display: block;
}

/* Efeito de Partículas */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    transition: var(--transition);
    background: 
        radial-gradient(circle at 15% 50%, var(--primary) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, var(--secondary) 0%, transparent 25%);
    opacity: 0.1;
    filter: blur(100px);
    background-size: 200% 200%;
    animation: shimmer 15s ease infinite alternate;
}

/* Partículas modo claro */
:root.light-theme .particles {
    background: 
        radial-gradient(circle at 15% 50%, var(--primary-light) 0%, transparent 30%),
        radial-gradient(circle at 85% 30%, var(--accent) 0%, transparent 30%);
    opacity: 0.05;
}

/* Container Principal */
.looping-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    z-index: 1;
}

/* Logo */
.logo-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

.logo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

:root.light-theme .logo {
    content: url('https://viagenslooping.com.br/wp-content/uploads/2023/08/logo-branca-site.webp');
    filter: brightness(0.2) drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.2; }
}

/* Botões Principais - VERTICAL */
.buttons-container {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.looping-button {
    position: relative;
    width: 100%;
    height: 60px;
    padding: 0;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    will-change: transform;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.button-content {
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.button-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(100%);
    transition: var(--transition);
}

.looping-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px var(--shadow-color);
}

.looping-button:hover .button-content {
    transform: translateY(-100%);
}

.looping-button:hover .button-hover-content {
    transform: translateY(0);
}

.button-icon {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.button-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Botão em destaque (primeiro botão) */
.looping-button.featured {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.looping-button.featured .button-icon {
    background: var(--text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.looping-button.featured .button-text {
    color: white;
}

/* Toast notifications */
.looping-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--surface-2);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    max-width: 90%;
    width: 350px;
}

.looping-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.looping-toast.error {
    border-left-color: var(--error);
}

.toast-icon {
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.looping-toast.error .toast-icon {
    color: var(--error);
}

.toast-message {
    flex: 1;
    font-size: 1rem;
}

/* Animações - Otimizadas */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsividade */
@media (min-width: 768px) {
    .looping-container {
        max-width: 450px;
    }
}

/* Ajustes para telas pequenas */
@media (max-width: 480px) {
    .looping-container {
        padding: 1.5rem 1rem;
    }

    .logo-container {
        width: 150px;
        height: 150px;
    }

    .buttons-container {
        max-width: 300px;
    }

    .looping-button {
        height: 55px;
    }

    .button-text {
        font-size: 0.95rem;
    }
}

/* Ajustes de acessibilidade para foco */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* CSS para quando o JavaScript estiver desativado */
.no-js .modal-overlay {
    display: none !important;
}

/* Efeito de Ripple para botões */
.button-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}/* End custom CSS */