:root {
    --announcement-height: 42px;
}

.homepage-body {
    margin: 0;
    padding: 0;
    padding-top: var(--announcement-height); 
    background-color: #030014;
    background-image:
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225,39%,30%,0.15) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339,49%,30%,0.15) 0, transparent 50%);
    font-family: 'Inter', sans-serif;
    color: #f0f4ff;
    overflow-x: hidden;
    position: relative;
}

.homepage-body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opactity='0.05'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.hp-navbar {
    position: fixed;
    top: var(--announcement-height, 42px);
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.announcement-closed .hp-navbar {
    top: 0;
}

.announcement-closed .homepage-body {
    padding-top: 0;
}

.announcement-closed .hp-announcement-bar {
    display: none;
}

.hp-announcement-bar {
    background: linear-gradient(90deg, #064e3b, #065f46);
    color: #ecfdf5;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    font-family: 'Inter', sans-serif;
    min-height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 3rem; 
}

.hp-announcement-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(236, 253, 245, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.hp-announcement-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.hp-navbar.scrolled {
    background: rgba(3, 0, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hp-navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.hp-navbar-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hp-navbar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.hp-navbar-brand:hover .hp-navbar-logo {
    transform: scale(1.05);
}

.hp-navbar-brand-text {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.hp-navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hp-navbar-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.hp-navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #818cf8);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.hp-navbar-links a:hover {
    color: #f0f4ff;
}

.hp-navbar-links a:hover::after {
    width: 100%;
}

.hp-btn-cta-nav {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

.hp-btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.5);
    filter: brightness(1.1);
}

.hp-btn-outline {
    background: transparent;
    border: 2px solid rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    padding: 0.65rem 1.5rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hp-btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.8);
    color: white;
    transform: translateY(-2px);
}

.hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem; 
    overflow: hidden;
}

.hp-hero-ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}

.hp-hero-ambient-1 {
    width: 700px;
    height: 700px;
    background: rgba(99, 102, 241, 0.3);
    top: -200px;
    left: -200px;
    animation: heroFloat 12s ease-in-out infinite alternate;
}

.hp-hero-ambient-2 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.2);
    bottom: -100px;
    right: -150px;
    animation: heroFloat 10s ease-in-out infinite alternate-reverse;
}

.hp-hero-ambient-3 {
    width: 300px;
    height: 300px;
    background: rgba(251, 191, 36, 0.1);
    top: 30%;
    right: 10%;
    animation: heroFloat 14s ease-in-out infinite alternate;
}

@keyframes heroFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, 25px) scale(1.08); }
}

.hp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.hp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #a5b4fc;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hp-badge-dot {
    width: 7px;
    height: 7px;
    background: #6366f1;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hp-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
}

.hp-hero h1 .gradient-text {
    background: linear-gradient(135deg, #c7d2fe 0%, #818cf8 30%, #6366f1 60%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #8d97b8;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hp-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hp-btn-primary {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: white;
    border: none;
    padding: 1rem 2.25rem;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.hp-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.hp-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.55);
}

.hp-btn-primary:hover::after {
    left: 150%;
}

.hp-btn-whatsapp-cta {
    background: #25d366;
    color: white;
    border: none;
    padding: 1rem 2.25rem;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.hp-btn-whatsapp-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    background: #22c35e;
}

.hp-btn-hero-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    padding: 1rem 2.25rem;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.hp-btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hp-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.hp-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #f0f4ff;
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.hp-section {
    position: relative;
    padding: 7rem 2rem;
    z-index: 1;
}

.hp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #818cf8;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.hp-section-label i {
    width: 16px;
    height: 16px;
}

.hp-section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: #f0f4ff;
}

.hp-section-header p {
    font-size: 1.05rem;
    color: #8d97b8;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hp-feature-card {
    background: rgba(24, 24, 27, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hp-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hp-feature-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(99, 102, 241, 0.1);
}

.hp-feature-card:hover::before {
    opacity: 1;
}

.hp-feature-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.hp-feature-icon i {
    width: 24px;
    height: 24px;
}

.hp-feature-icon.icon-indigo   { background: linear-gradient(135deg, #6366f1, #4338ca); color: white; }
.hp-feature-icon.icon-emerald  { background: linear-gradient(135deg, #10b981, #059669); color: white; }
.hp-feature-icon.icon-amber    { background: linear-gradient(135deg, #f59e0b, #d97706); color: white; }
.hp-feature-icon.icon-rose     { background: linear-gradient(135deg, #f43f5e, #e11d48); color: white; }
.hp-feature-icon.icon-cyan     { background: linear-gradient(135deg, #06b6d4, #0891b2); color: white; }
.hp-feature-icon.icon-violet   { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; }

.hp-feature-card h3 {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #f0f4ff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.hp-feature-card p {
    position: relative;
    z-index: 1;
    color: #8d97b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.hp-steps {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
}

.hp-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
}

.hp-step-number {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #818cf8;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.hp-step:hover .hp-step-number {
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.4);
    transform: scale(1.1);
}

.hp-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #f0f4ff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.hp-step p {
    color: #8d97b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.hp-step-connector {
    position: absolute;
    top: 4.5rem;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(99,102,241,0.3), rgba(99,102,241,0.05));
}

.hp-step:last-child .hp-step-connector {
    display: none;
}

.hp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
}

.hp-pricing-card {
    background: rgba(24, 24, 27, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
}

.hp-pricing-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(99, 102, 241, 0.1);
}

.hp-pricing-card.popular {
    background: rgba(30, 27, 75, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
    z-index: 2;
}

.hp-pricing-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(99, 102, 241, 0.2);
}

.hp-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.hp-pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.hp-pricing-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #f0f4ff;
    margin-bottom: 0.5rem;
}

.hp-pricing-header p {
    color: #8d97b8;
    font-size: 0.95rem;
}

.hp-pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    color: #f0f4ff;
    gap: 0.2rem;
}

.hp-pricing-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 0.3rem;
    color: #818cf8;
}

.hp-pricing-price .value {
    font-family: 'Inter', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.hp-pricing-price .value .decimals {
    font-size: 1.6rem;
    font-weight: 800;
    margin-top: 0.5rem;
    margin-left: 2px;
    letter-spacing: 0;
}

.hp-pricing-price .period {
    font-size: 0.9rem;
    color: #8d97b8;
    margin-left: 0.3rem;
}

.hp-pricing-price.nitro-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #818cf8;
    text-align: center;
    margin: 1.5rem 0 2.5rem;
}

.hp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.hp-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hp-pricing-features li i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hp-pricing-features li i.icon-indigo {
    color: #818cf8;
}

.hp-pricing-features li.disabled {
    color: #475569;
}

.hp-pricing-features li.disabled i {
    color: #475569;
}

.hp-pricing-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1200px) {
    .hp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 640px) {
    .hp-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hp-btn-primary, 
    .hp-btn-hero-outline, 
    .hp-btn-whatsapp-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hp-navbar-links {
        display: none; 
    }
}

@media (max-width: 900px) {
    .hp-pricing-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
    }
}

@media (max-width: 640px) {
    :root {
        --announcement-height: 60px; 
    }
    .hp-announcement-bar {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
}

.hp-cta-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.hp-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1));
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hp-cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(99,102,241,0.15);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hp-cta-box h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #f0f4ff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hp-cta-box p {
    color: #8d97b8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hp-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.hp-footer p {
    color: #525d7a;
    font-size: 0.85rem;
}

.hp-footer span {
    color: #818cf8;
    font-weight: 600;
}

.hp-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.hp-whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #22c35e;
    color: white;
}

.hp-whatsapp-float i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-contact-grid {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.grecaptcha-badge {
    visibility: hidden !important;
}

.hp-contact-form {
    width: 100%;
    background: rgba(24, 24, 27, 0.35);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.hp-form-group {
    margin-bottom: 1.5rem;
}

.hp-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.hp-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hp-form-input:focus {
    outline: none;
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.hp-form-textarea {
    resize: none;
    min-height: 120px;
}

.hp-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hp-stagger .hp-reveal:nth-child(1) { transition-delay: 0s; }
.hp-stagger .hp-reveal:nth-child(2) { transition-delay: 0.08s; }
.hp-stagger .hp-reveal:nth-child(3) { transition-delay: 0.16s; }
.hp-stagger .hp-reveal:nth-child(4) { transition-delay: 0.24s; }
.hp-stagger .hp-reveal:nth-child(5) { transition-delay: 0.32s; }
.hp-stagger .hp-reveal:nth-child(6) { transition-delay: 0.40s; }

.hp-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 102;
}

@media (max-width: 900px) {
    .hp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hp-steps {
        flex-direction: column;
        align-items: center;
    }
    .hp-step-connector {
        display: none;
    }
    .hp-step {
        max-width: 400px;
    }
    .hp-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hp-pricing-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
    }
}

@media (max-width: 640px) {
    :root {
        --announcement-height: auto; 
    }
    
    .hp-announcement-bar {
        font-size: 0.75rem;
        padding: 0.75rem 2.5rem 0.75rem 0.75rem;
        min-height: 50px;
        line-height: 1.4;
    }

    .hp-announcement-content {
        gap: 8px !important;
    }

    .hp-navbar {
        padding: 0.75rem 1rem;
    }

    .hp-menu-toggle {
        display: flex;
    }

    .hp-navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #030014;
        border-left: 1px solid rgba(255,255,255,0.1);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 101;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .hp-navbar-links.active {
        right: 0;
    }

    /* Overlay para o menu mobile */
    .hp-navbar-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        right: 100%;
        width: 200vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        pointer-events: none;
        z-index: -1;
    }

    .hp-navbar-links a {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    .hp-btn-cta-nav {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .hp-hero {
        padding: 7rem 1.25rem 4rem;
    }

    .hp-hero h1 {
        font-size: 2.2rem;
    }

    .hp-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hp-btn-primary, .hp-btn-hero-outline, .hp-btn-whatsapp-cta {
        width: 100%;
        max-width: none;
    }

    .hp-features-grid {
        grid-template-columns: 1fr;
    }

    .hp-cta-box {
        padding: 2.5rem 1.5rem;
    }
}

/* Botão Saiba Mais (Bonito e Moderno) */
.hp-announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hp-announcement-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hp-announcement-btn:hover {
    background: #ffffff;
    color: #064e3b;
    border-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hp-announcement-btn:active {
    transform: scale(0.98);
}

/* Ajustes Mobile Estritos para o Modal (SÓ MOBILE) */
@media (max-width: 640px) {
    #novidadesModal {
        align-items: flex-start !important;
        padding-top: 4vh !important;
        overflow-y: auto !important;
    }
    #novidadesModal .modal-content {
        max-height: none !important;
        padding: 40px 20px 24px !important;
        margin-bottom: 20px !important;
    }
    #closeNovidadesModalIcon {
        top: 10px !important;
        right: 10px !important;
        width: 44px !important;
        height: 44px !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 50% !important;
    }
}
