:root {
    /* Color Palette */
    --bg-dark: #050505;
    --bg-card: rgba(15, 23, 42, 0.6);
    --primary-cyan: #00f2ff;
    --primary-blue: #0066ff;
    --accent-glow: rgba(0, 242, 255, 0.3);
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Elements */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

#glow-1 { top: -200px; left: -200px; }
#glow-2 { bottom: -200px; right: -200px; }

/* Typography Helpers */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.giant-text {
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

/* Components */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-10px);
}

.btn-premium {
    padding: 20px 45px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: 0.4s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    font-size: 0.9rem;
}

.btn-premium:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.5);
}

.btn-outline {
    padding: 20px 45px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s;
    font-size: 0.9rem;
    display: inline-block;
}

.btn-outline:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 5%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(5, 5, 5, 0.7);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px; /* Tamanho ideal para o navbar */
    width: auto;
    transition: 0.3s;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.footer-logo {
    height: 60px; /* Tamanho um pouco maior para o rodapé */
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.nav-links a:hover {
    color: var(--primary-cyan);
}

.btn-nav {
    padding: 12px 28px !important;
    border: 1px solid var(--primary-cyan) !important;
    border-radius: 50px;
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-content {
    max-width: 1100px;
    z-index: 2;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin: 40px auto;
    max-width: 700px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.floating-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    filter: blur(120px);
    z-index: -1;
    animation: orbPulse 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes orbPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0.7; }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 900;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-cyan);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-weight: 500;
}

.about-image {
    position: relative;
    height: 550px;
}

.image-glass-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: 0.5s ease;
}

.image-glass-frame:hover .profile-img {
    transform: scale(1.05);
    filter: brightness(1);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 25px 35px;
    border-radius: 25px;
    border: 1px solid var(--primary-cyan);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.experience-badge i {
    font-size: 2.2rem;
    color: var(--primary-cyan);
}

.experience-badge span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Services Section */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 4.5rem;
    font-weight: 900;
}

.section-header p {
    font-size: 1.4rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 10px auto 0;
    line-height: 1.4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    padding: 60px 45px;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-cyan);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* Skills/Experience Section */
.experience-header {
    text-align: center;
    margin-bottom: 60px;
}

.experience-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
}

.skills-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
}

.skill-item {
    margin-bottom: 45px;
}

.skill-item:last-child { margin-bottom: 0; }

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.skill-bar {
    width: 100%;
    height: 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    box-shadow: 0 0 20px var(--accent-glow);
    border-radius: 20px;
    width: 0;
    transition: 2.5s cubic-bezier(0.1, 0, 0.2, 1);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-10px);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}


.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 102, 255, 0.9), transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.portfolio-info span {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch; /* Garante que todos os cards tenham a mesma altura */
    padding-top: 40px;
}

.pricing-card {
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ocupa toda a altura da grid */
}

.featured {
    border-color: var(--primary-cyan);
    background: linear-gradient(165deg, var(--primary-blue) 0%, #001a3d 100%);
    position: relative;
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.4);
}

.featured .plan-description {
    color: white;
}

.featured .service-name {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.featured .price-tag span {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.featured .popular-badge {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-cyan);
    color: black;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-header { 
    text-align: center;
    margin-bottom: 30px;
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 900;
}

.price-header p {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 500;
}

/* Individual Services Specific Styles */
.individual-services {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.indiv-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.service-name {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 242, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.service-price {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    padding: 10px 10px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.2);
    white-space: nowrap;
    min-height: 45px;
}

.price-tag {
    text-align: center;
    margin-top: auto; 
    margin-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.price-tag span {
    display: block;
    font-size: 2.8rem;
    color: var(--primary-cyan);
    font-weight: 900;
}

.plan-description {
    color: #e2e8f0; /* Texto levemente mais claro para contraste */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    min-height: 100px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.full-width {
    width: 100%;
    text-align: center;
}

.service-price span {
    font-size: 0.7rem;
    vertical-align: super;
    opacity: 0.8;
}

/* Payment & Delivery */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.pd-box {
    padding: 60px;
}

.pd-box h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 900;
}

.pd-box h3 i { color: var(--primary-cyan); }

.pd-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.pd-item i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.pd-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.pd-item p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 120px 5% 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand p {
    margin-top: 25px;
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.footer-social a {
    width: 60px;
    height: 60px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background: var(--primary-cyan);
    color: black;
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.footer-contact p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--primary-cyan);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 100px;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-blue), var(--primary-cyan));
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-grid { gap: 50px; }
    .featured { transform: scale(1.03); }
}

@media (max-width: 992px) {
    .about-grid, .pd-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    .featured {
        transform: scale(1);
        margin: 20px 0;
    }
    .about-image { height: 400px; }
    .giant-text { font-size: 5rem; }
}

@media (max-width: 600px) {
    .navbar { padding: 15px 5%; }
    .nav-container { justify-content: center; }
    .nav-links { display: none; }
    
    .hero { padding: 100px 5% 60px; }
    .giant-text { font-size: 2.8rem; }
    .subheadline { font-size: 1.1rem; margin: 25px auto; }
    
    .portfolio-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-btns .btn-premium, .hero-btns .btn-outline { width: 100%; text-align: center; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .skills-container { padding: 30px; }
    .pd-box { padding: 30px; }

    .about h2 { font-size: 2.5rem; }
    .contact-card h2 { font-size: 2.2rem; }
    .price-tag span { font-size: 2.2rem; }

    /* Centering footer elements on mobile */
    .footer-container { text-align: center; }
    .footer-brand p { margin: 25px auto 0; }
    .footer-social { justify-content: center; }
    .footer-contact p { justify-content: center; }
}
/* Contact Form Section */
.contact-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 50px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 40px 40px 0 0;
}

.contact-card h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
}

.contact-card .subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.field { margin-bottom: 25px; }

.field label {
    display: block;
    color: #aaaaaa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.field label .opt {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-weight: 400;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.field input:focus, .field textarea:focus {
    border-color: var(--primary-cyan);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px var(--accent-glow);
}

.field textarea { resize: vertical; min-height: 120px; }

.toggle-group { display: flex; gap: 15px; flex-wrap: wrap; }
.toggle-group input[type="radio"] { display: none; }

.toggle-group label {
    flex: 1;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 0;
}

.toggle-group input[type="radio"]:checked + label {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.divider {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 40px 0;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    color: white;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
}

.btn-submit svg { width: 24px; height: 24px; }

.note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 20px;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 8px;
}

.shake { animation: shake 0.4s ease; }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-border { border-color: #ff4444 !important; }

@media (max-width: 600px) {
    .contact-card { padding: 40px 25px; }
    .toggle-group label { min-width: 100px; }
}
