:root {
    /* Colors */
    --bg-main: #0B0B0E;
    --bg-secondary: #13141B;
    --text-main: #FFFFFF;
    --text-muted: #8F95B2;
    --accent: #5D5FEF;
    --accent-glow: rgba(93, 95, 239, 0.4);
    --highlight: #00F0FF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-sans: 'Space Grotesk', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Spacing & Sizes */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.8;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(93, 95, 239, 0.5);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 240, 255, 0.4);
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 150px); }
}

/* Typography & Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
}

.accent {
    color: var(--accent);
}

.highlight {
    color: var(--highlight);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--highlight);
    border-radius: 2px;
    opacity: 0.3;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

/* Buttons */
.btn-primary, .btn-primary-small, .btn-secondary, .view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: #4a4cd9;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--accent-glow);
}

.btn-primary-small {
    background: var(--accent);
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

.btn-primary-small:hover {
    background: #4a4cd9;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-muted);
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(11, 11, 14, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn-primary-small) {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--text-main);
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 110px 0 2rem 0;
    margin-bottom: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.greeting {
    font-size: 1.1rem;
    color: var(--highlight);
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content .title {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 0.6rem;
    letter-spacing: -2px;
}

.hero-content .subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.3;
}

.hero-content .description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0;
}

/* Code Snippet Card */
.profile-card {
    padding: 1.5rem;
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
}

.profile-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
    border-radius: 16px 16px 0 0;
}

.code-snippet pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.code-snippet .keyword { color: #c678dd; }
.code-snippet .property { color: #e06c75; }
.code-snippet .string { color: #98c379; }

/* About Section */
.about {
    padding: 3rem 0 4rem 0;
    margin-top: 0;
    background: linear-gradient(180deg, transparent, rgba(19, 20, 27, 0.5));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    background: rgba(93, 95, 239, 0.1);
    color: var(--highlight);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(93, 95, 239, 0.2);
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(93, 95, 239, 0.2);
    transform: translateY(-2px);
}

/* Projects Section */
.projects {
    padding: 8rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(93, 95, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #050608;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.project-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 14, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--text-main);
    color: var(--bg-main);
    padding: 0.8rem 1.5rem;
    transform: translateY(20px);
}

.project-card:hover .view-btn {
    transform: translateY(0);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-techs span {
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(93, 95, 239, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-box {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-box p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--highlight);
    transform: translateY(-3px);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    background: transparent;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-info-list li:hover {
    transform: translateY(-3px);
    color: var(--text-main);
}

.badge-gmail {
    border-color: #EA4335 !important;
    box-shadow: 0 0 10px rgba(234, 67, 53, 0.15), inset 0 0 10px rgba(234, 67, 53, 0.05);
}
.badge-gmail:hover {
    background: rgba(234, 67, 53, 0.1);
    box-shadow: 0 0 20px rgba(234, 67, 53, 0.4), inset 0 0 10px rgba(234, 67, 53, 0.2);
}

.badge-whatsapp {
    border-color: #25D366 !important;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.15), inset 0 0 10px rgba(37, 211, 102, 0.05);
}
.badge-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), inset 0 0 10px rgba(37, 211, 102, 0.2);
}

.badge-instagram {
    border-color: #E1306C !important;
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.15), inset 0 0 10px rgba(225, 48, 108, 0.05);
}
.badge-instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4), inset 0 0 10px rgba(225, 48, 108, 0.2);
}

.contact-info-list i {
    font-size: 1.5rem;
}

.icon-gmail {
    color: #EA4335;
}

.icon-whatsapp {
    color: #25D366;
}

.icon-instagram {
    color: #E1306C;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Neon Buttons */
.neon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.neon-btn i {
    font-size: 1.4rem;
}

.neon-instagram {
    color: #E1306C;
    border: 1px solid #E1306C;
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.3), inset 0 0 10px rgba(225, 48, 108, 0.1);
}
.neon-instagram:hover {
    background: #E1306C;
    color: #fff;
    box-shadow: 0 0 20px #E1306C, 0 0 40px #E1306C;
}

.neon-whatsapp {
    color: #25D366;
    border: 1px solid #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.3), inset 0 0 10px rgba(37, 211, 102, 0.1);
}
.neon-whatsapp:hover {
    background: #25D366;
    color: #fff;
    box-shadow: 0 0 20px #25D366, 0 0 40px #25D366;
}

.neon-gmail {
    color: #EA4335;
    border: 1px solid #EA4335;
    box-shadow: 0 0 10px rgba(234, 67, 53, 0.3), inset 0 0 10px rgba(234, 67, 53, 0.1);
}
.neon-gmail:hover {
    background: #EA4335;
    color: #fff;
    box-shadow: 0 0 20px #EA4335, 0 0 40px #EA4335;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(11, 12, 16, 0.4), rgba(19, 20, 27, 0.8));
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: -0.5rem auto 3.5rem auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-card {
    padding: 2.2rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(19, 20, 27, 0.6);
    min-width: 0;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

/* Card 1: Portfólios e Apps - Neon Vermelho */
.card-portfolio {
    border: 1px solid rgba(255, 45, 85, 0.45);
    box-shadow: 0 10px 25px rgba(255, 45, 85, 0.12), inset 0 0 15px rgba(255, 45, 85, 0.03);
}

.card-portfolio:hover {
    border-color: #ff2d55;
    box-shadow: 0 20px 45px rgba(255, 45, 85, 0.35), 0 0 25px rgba(255, 45, 85, 0.2);
}

/* Card 2: Sistemas Básicos - Neon Verde */
.card-basic {
    border: 1px solid rgba(0, 230, 118, 0.45);
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.12), inset 0 0 15px rgba(0, 230, 118, 0.03);
}

.card-basic:hover {
    border-color: #00e676;
    box-shadow: 0 20px 45px rgba(0, 230, 118, 0.35), 0 0 25px rgba(0, 230, 118, 0.2);
}

/* Card 3: Sistemas Intermediários - Neon Azul / Roxo */
.popular-card, .card-pro {
    border: 1px solid rgba(93, 95, 239, 0.5);
    box-shadow: 0 10px 30px rgba(93, 95, 239, 0.2), inset 0 0 20px rgba(93, 95, 239, 0.05);
    position: relative;
}

.popular-card:hover, .card-pro:hover {
    border-color: #5d5fef;
    box-shadow: 0 20px 45px rgba(93, 95, 239, 0.35), 0 0 30px rgba(0, 240, 255, 0.2);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #5d5fef, #00f0ff);
    color: #fff;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(93, 95, 239, 0.6);
    white-space: nowrap;
}

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

.plan-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.app-badge {
    background: rgba(255, 45, 85, 0.15);
    color: #ff4d6d;
    border: 1px solid rgba(255, 45, 85, 0.4);
}

.basic-badge {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    border: 1px solid rgba(0, 230, 118, 0.4);
}

.pro-badge {
    background: rgba(93, 95, 239, 0.15);
    color: #9b9eff;
    border: 1px solid rgba(93, 95, 239, 0.4);
}

.plan-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.efficiency-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(93, 95, 239, 0.15);
    color: #9b9eff;
    border: 1px solid rgba(93, 95, 239, 0.4);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0.2rem auto 0.8rem auto;
    box-shadow: 0 0 12px rgba(93, 95, 239, 0.25);
}

.efficiency-tag i {
    color: #00f0ff;
    font-size: 1rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.45;
    text-align: left;
}

.pricing-features i {
    font-size: 1.2rem;
    color: #00f0ff;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pricing-features .basic-check {
    color: #00e676;
}

.pricing-features .pro-check {
    color: #5d5fef;
}

.pricing-features .app-check {
    color: #ff4d6d;
}

.pricing-values {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 0.9rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.price-combo-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.combo-header {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 0 0.5rem 0.4rem 0.5rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-combo-block .price-row-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 0.35rem 0.5rem;
}

.price-row-stacked .price-type {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-row-stacked .price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    text-align: left;
}

.price-row-stacked .price-tag strong {
    font-size: 1.25rem;
    color: #fff;
}

.price-row-stacked .price-tag small {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.combo-plus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0.1rem 0;
}

.combo-plus-divider span {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.basic-combo .combo-plus-divider span {
    color: #00e676;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.35);
}

.pro-combo .combo-plus-divider span {
    color: #9b9eff;
    background: rgba(93, 95, 239, 0.15);
    border: 1px solid rgba(93, 95, 239, 0.4);
}

.pricing-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0.3rem 0;
}

.pricing-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.pricing-divider span {
    position: relative;
    z-index: 2;
    background: #13141b;
    padding: 0.15rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    gap: 0.6rem;
}

.price-type {
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.92rem;
}

.price-tag {
    text-align: right;
    white-space: nowrap;
}

.price-tag strong {
    font-size: 1.25rem;
    color: #fff;
}

.highlight-vitalicio {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.35);
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    width: 100%;
}

.highlight-vitalicio .price-type {
    color: #00f0ff;
    font-weight: 700;
    font-size: 0.9rem;
}

.highlight-vitalicio .price-tag strong {
    color: #00f0ff;
}

.basic-vitalicio {
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.35);
}

.basic-vitalicio .price-type {
    color: #00e676;
    font-weight: 700;
}

.basic-vitalicio .price-tag strong {
    color: #00e676;
}

.pro-vitalicio {
    background: rgba(93, 95, 239, 0.15);
    border-color: rgba(93, 95, 239, 0.45);
}

.pro-vitalicio .price-type {
    color: #9b9eff;
    font-weight: 700;
}

.pro-vitalicio .price-tag strong {
    color: #9b9eff;
}

.app-vitalicio {
    background: rgba(255, 45, 85, 0.12);
    border: 1px solid rgba(255, 45, 85, 0.45);
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.12);
}

.app-vitalicio .price-type {
    color: #ff4d6d;
    font-weight: 700;
}

.app-vitalicio .price-tag strong {
    color: #ff4d6d;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.basic-btn {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
}

.basic-btn:hover {
    background: #25D366;
    color: #fff;
    box-shadow: 0 0 25px #25D366, 0 0 45px rgba(37, 211, 102, 0.6);
    transform: scale(1.02);
}

.pro-btn {
    background: linear-gradient(90deg, #5d5fef, #00f0ff);
    color: #fff;
    border: none;
    box-shadow: 0 0 18px rgba(93, 95, 239, 0.5);
}

.pro-btn:hover {
    box-shadow: 0 0 30px rgba(93, 95, 239, 0.8), 0 0 50px rgba(0, 240, 255, 0.6);
    transform: scale(1.02);
}

.pricing-custom-note {
    max-width: 1000px;
    margin: 2.5rem auto 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(93, 95, 239, 0.35);
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-custom-note i {
    font-size: 1.8rem;
    color: var(--highlight);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pricing-custom-note strong {
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .hero-container, .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-content .description {
        margin: 0 auto 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .profile-card {
        transform: none;
    }

    .profile-card:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-content .title {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .code-snippet pre {
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-content .title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-primary, .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .code-snippet pre {
        font-size: 0.8rem;
    }
    
    .contact-box {
        padding: 2rem 1rem;
    }
}
