/* ========================================
   HOST PROSPERA V10.1 - THE ULTIMATE VERSION
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --primary-dark: #04060b;
  --primary-darker: #020306;
  --accent-blue: #2563eb;
  --accent-blue-light: #3b82f6;
  --accent-blue-glow: rgba(37, 99, 235, 0.4);
  --accent-silver: #94a3b8;
  --accent-silver-light: #cbd5e1;
  --white: #ffffff;
  
  --gradient-main: linear-gradient(180deg, #04060b 0%, #0a1229 50%, #04060b 100%);
  --gradient-card: linear-gradient(145deg, rgba(37, 99, 235, 0.12) 0%, rgba(2, 3, 6, 0.98) 100%);
  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  --gradient-silver: linear-gradient(135deg, #94a3b8 0%, #f1f5f9 100%);
  
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: var(--gradient-main); color: var(--accent-silver-light); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* === LOADER === */
#loader-wrapper {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--primary-darker); display: flex; justify-content: center; align-items: center;
  z-index: 9999; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.loader-circle {
  width: 60px; height: 60px;
  border: 3px solid rgba(37, 99, 235, 0.1);
  border-top: 3px solid var(--accent-blue-light);
  border-radius: 50%; animation: spin 0.5s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* === HEADER & SUBMENU === */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(4, 6, 11, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; height: 90px; }

.logo-container { position: relative; display: flex; align-items: center; }
.logo-glow { position: absolute; width: 140%; height: 140%; background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%); z-index: -1; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.logo img { height: 55px; width: auto; }

.nav-menu { display: flex; gap: 1.5rem; list-style: none; }
.nav-item { position: relative; padding: 1rem 0; }
.nav-link { color: var(--accent-silver); font-weight: 500; font-size: 0.95rem; transition: var(--transition); display: flex; align-items: center; gap: 5px; }
.nav-link:hover, .nav-link.active { color: var(--white); }

.submenu {
  position: absolute; top: 100%; left: 0; width: 240px; background: var(--primary-darker);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 1rem;
  opacity: 0; visibility: hidden; transform: translateY(15px); transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}
.nav-item:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu-link { display: block; color: var(--accent-silver); padding: 0.8rem 1rem; border-radius: 8px; font-size: 0.9rem; transition: var(--transition); }
.submenu-link:hover { background: rgba(37, 99, 235, 0.15); color: var(--white); padding-left: 1.5rem; }

/* === HERO === */
.hero { padding: 14rem 0 10rem; text-align: center; position: relative; }
.hero::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 100%; background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 60%); z-index: -1; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; background: linear-gradient(to bottom, #fff 60%, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2.5rem; border-radius: 12px; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--gradient-primary); color: var(--white); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4); }
.btn-outline { background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6); }

/* === PRICING CARDS (V8 STYLE + V9 CONTENT) === */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.pricing-card { background: var(--gradient-card); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 3.5rem 2rem; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.pricing-card:hover { transform: translateY(-12px); border-color: var(--accent-blue); box-shadow: var(--shadow-glow); }
.pricing-card.featured { border: 2px solid var(--accent-blue); box-shadow: var(--shadow-glow); }
.pricing-card.featured::before { content: 'RECOMENDADO'; position: absolute; top: 20px; right: -35px; background: var(--accent-blue); color: white; font-size: 0.7rem; font-weight: 800; padding: 5px 40px; transform: rotate(45deg); z-index: 1; }

.plan-name { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; font-family: 'Space Grotesk'; }
.plan-price { font-size: 3.5rem; font-weight: 800; color: var(--white); margin: 1rem 0; }
.plan-price span { font-size: 1.1rem; color: var(--accent-silver); font-weight: 400; }
.annual-price { font-size: 0.9rem; color: var(--accent-blue-light); font-weight: 700; margin-bottom: 1.5rem; }

.accordion-item { margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; }
.accordion-header { cursor: pointer; color: var(--accent-blue-light); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); }
.accordion-header:hover { color: var(--white); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; text-align: left; }
.accordion-content.active { max-height: 300px; margin-top: 1rem; }
.accordion-content ul { list-style: none; }
.accordion-content li { font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--accent-silver); display: flex; align-items: center; gap: 8px; }
.accordion-content li i { color: var(--accent-blue-light); font-size: 0.7rem; }

/* === DOMAIN SEARCH REFINED === */
.domain-search-box { background: var(--gradient-card); padding: 2.5rem; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1); display: flex; gap: 1rem; max-width: 1000px; margin: -5rem auto 6rem; position: relative; z-index: 10; box-shadow: var(--shadow-glow); }
.domain-input { flex: 1; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.15); padding: 1.2rem 1.8rem; border-radius: 14px; color: white; outline: none; font-size: 1.1rem; }
.domain-select { background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 0 1.5rem; border-radius: 14px; cursor: pointer; font-weight: 700; font-size: 1rem; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.2rem; padding-right: 3rem; }

/* === FAQ & TESTIMONIALS === */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 15px; margin-bottom: 1rem; overflow: hidden; }
.faq-question { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--white); transition: var(--transition); }
.faq-answer { padding: 0 2rem; max-height: 0; overflow: hidden; transition: all 0.4s ease; color: var(--accent-silver); font-size: 0.95rem; }
.faq-item.active .faq-answer { padding: 0 2rem 1.5rem; max-height: 200px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--gradient-card); padding: 2.5rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }

/* === FOOTER === */
.footer { background: var(--primary-darker); padding: 8rem 0 4rem; border-top: 1px solid rgba(255, 255, 255, 0.08); position: relative; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 4rem; }
.footer-title { color: var(--white); font-weight: 700; margin-bottom: 2rem; font-size: 1.1rem; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--accent-blue); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: var(--accent-silver); transition: var(--transition); font-size: 0.95rem; }
.footer-links a:hover { color: var(--white); padding-left: 8px; }

.social-links { display: flex; gap: 1.2rem; margin-top: 2rem; }
.social-links a { width: 45px; height: 45px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 12px; color: var(--white); transition: var(--transition); border: none !important; }
.social-links a:hover { background: var(--accent-blue); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); }

/* === SECTIONS === */
.section-padding { padding: 10rem 0; }
.section-header { text-align: center; margin-bottom: 6rem; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: 3.2rem; color: var(--white); margin-bottom: 1.5rem; }
.section-subtitle { color: var(--accent-blue-light); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 1rem; display: block; }

/* === CORREÇÕES V10.1 MOBILE === */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--white);
        transition: 0.3s;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(4, 6, 11, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        z-index: 1000;
        border-left: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-item {
        margin: 1.5rem 0;
    }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        text-align: center;
        padding: 0;
        display: none;
    }
    .nav-item:hover .submenu {
        display: block;
    }
    .hero {
        padding: 10rem 0 6rem;
    }
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 10px;
        margin-bottom: 2rem !important;
    }
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    .hero-cta .btn {
        margin: 0 !important;
        width: 100%;
    }
    .domain-search-box {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        margin: 2rem 1.5rem 4rem;
    }
    .domain-input, .domain-select, .domain-search-box .btn {
        width: 100% !important;
        border-radius: 10px !important;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
