/* Estilos Base e Cores (Tema CMYK) */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    /* Alterado: Efeito de gradiente sutil com Ciano e Magenta */
    background-image: radial-gradient(circle at top right, rgba(255, 119, 0, 0.08), transparent 40%), radial-gradient(circle at bottom left, rgba(255, 179, 0, 0.08), transparent 40%);
    color: #ffffff;
    background-attachment: fixed;
}

* {
    scroll-behavior: smooth;
}

/* Novo: Paleta de cores baseada na logo (CMYK) */
:root {
    --brand-cyan: #ffae00;    /* Ciano (DeepSkyBlue para melhor visual) */
    --brand-magenta: #ff8c00; /* Magenta */
    --brand-yellow: #FFD700;  /* Amarelo (Gold para melhor visual) */
}

/* Alterado: Gradiente de texto com as novas cores */
.text-gradient {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Alterado: Estilo dos botões primários */
.btn-primary, .btn-contratar {
    background-color: var(--brand-cyan);
    color: #000; /* Texto preto para melhor contraste com Ciano */
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover, .btn-contratar:hover {
    background-color: #c08300; /* Ciano mais escuro */
    transform: translateY(-2px);
    box-shadow: 0 4px B20px rgba(255, 187, 0, 0.4); /* Sombra Ciano */
}

/* Alterado: Destaque de links da navegação */
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-cyan);
    transition: width 0.3s ease-in-out;
}
.nav-link:hover::after { width: 100%; }

/* Alterado: Abas de planos ativas */
.plan-tab-btn {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.05);
}
.plan-tab-btn.active {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    background-color: rgba(0, 191, 255, 0.1);
}
.plan-tab-btn:active {
    transform: scale(0.97);
}

.plan-tab-content { display: none; }
.plan-tab-content.active { display: flex; }

/* Estilos de Cards e Elementos de UI */
.glass-card {
    background: rgba(17, 24, 39, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Alterado: Card de plano em destaque */
.plan-card-featured {
    border-color: var(--brand-cyan);
}

.map-dark { filter: invert(1) hue-rotate(180deg) contrast(0.9); }

/* Botão Flutuante do WhatsApp (Mantido por padrão de marca) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-subtle 2s infinite;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}


/* ======================================================= */
/* ===                ANIMAÇÕES GERAIS                 === */
/* ======================================================= */

@keyframes zoom-in-out {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.hero-bg-animation {
    animation: zoom-in-out 15s ease-in-out infinite;
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-load {
    opacity: 0;
    animation-fill-mode: forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.do-fade-in-down { animation-name: fadeInDown; animation-duration: 0.8s; }
.do-fade-in-up { animation-name: fadeInUp; animation-duration: 0.8s; }
.do-fade-in { animation-name: fadeIn; animation-duration: 1.2s; }


/* ======================================================= */
/* ===             MENU DROPDOWN (MOBILE)              === */
/* ======================================================= */
.hamburger-button {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}
/* Alterado: Linhas do hamburguer para a cor Ciano */
.hamburger-button .line {
    width: 100%;
    height: 3px;
    background-color: var(--brand-cyan);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}
.hamburger-button.is-open .line:nth-child(1) { transform: translateY(13px) rotate(45deg); }
.hamburger-button.is-open .line:nth-child(2) { opacity: 0; }
.hamburger-button.is-open .line:nth-child(3) { transform: translateY(-14px) rotate(-45deg); }

.mobile-menu-overlay { display: none; }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 45;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #0a0a0a;
    padding-top: 88px; 
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu.is-open { transform: translateY(0); }

/* Alterado: Hover dos links do menu mobile */
.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}
.mobile-nav-link:hover {
    background-color: rgba(255, 157, 0, 0.1);
    color: var(--brand-cyan);
}
.mobile-nav-link-secondary {
    display: block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #d1d5db;
    text-align: center;
}
.mobile-nav-link-secondary:hover {
    color: var(--brand-cyan);
}
body.menu-open { overflow: hidden; }


/* ======================================================= */
/* ===         ANIMAÇÕES PARA CARDS E FORMULÁRIOS      === */
/* ======================================================= */
@keyframes cardFadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.plan-tab-content.active .glass-card {
  animation: cardFadeInUp 0.5s ease-out both;
}
.plan-tab-content.active .glass-card:nth-child(2) { animation-delay: 0.1s; }
.plan-tab-content.active .glass-card:nth-child(3) { animation-delay: 0.2s; }
.plan-tab-content.active .glass-card:nth-child(4) { animation-delay: 0.3s; }

.form-container-animate {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.form-container-animate.visible {
    opacity: 1;
    transform: scale(1);
}