/* CSS RESET & VARIABLES */
:root {
    --bg-dark: #09192f;
    --bg-dark-card: rgba(17, 34, 64, 0.65);
    --bg-dark-alt: #0d223d;
    --bg-light: #ffffff;
    --bg-light-alt: #f6f9fc;
    
    --primary-pink: #d4004a;
    --accent-yellow: #feff45;
    
    --text-light: #ffffff;
    --text-dark: #0a1128;
    --text-muted-light: #8892b0;
    --text-muted-dark: #475569;
    
    --border-light: rgba(255, 255, 255, 0.08);
    --border-dark: rgba(15, 23, 42, 0.08);
    
    --glow-pink: rgba(212, 0, 74, 0.3);
    --glow-yellow: rgba(254, 255, 69, 0.25);
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-main: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-muted {
    color: var(--text-muted-dark) !important;
}

.highlight-pink {
    color: var(--primary-pink);
    font-weight: 700;
}

.highlight-yellow {
    color: var(--accent-yellow);
    font-weight: 700;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(254, 255, 69, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 255, 69, 0.4);
    background-color: #f7f827;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-nav {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.btn-nav:hover {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(212, 0, 74, 0.3);
}

/* HEADER SECTION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    padding: 14px 0;
    background-color: rgba(9, 25, 47, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    background: linear-gradient(120deg, var(--text-light) 60%, var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.burger-menu .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-color: var(--bg-dark);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.glow-hero-1 {
    width: 400px;
    height: 400px;
    background-color: var(--glow-pink);
    top: 10%;
    right: 5%;
}

.glow-hero-2 {
    width: 500px;
    height: 500px;
    background-color: var(--glow-yellow);
    bottom: 5%;
    left: -10%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-premium {
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-pink);
    background-color: rgba(212, 0, 74, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 0, 74, 0.2);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-phrase {
    border-left: 2px solid var(--primary-pink);
    padding-left: 20px;
}

.phrase-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted-light);
    display: block;
    margin-bottom: 4px;
}

.phrase-text {
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-light);
}

/* HERO MOCKUP: Live CSS Dashboard */
.hero-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-dashboard-mockup {
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px -15px rgba(2, 12, 27, 0.6);
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.mockup-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 32px;
    height: 32px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-light);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-greeting {
    font-size: 0.8rem;
    font-weight: 600;
}

.app-mode {
    font-size: 0.65rem;
    color: var(--text-muted-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

.mockup-logo {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted-light);
    letter-spacing: -0.5px;
}

.mockup-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.metric-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.metric-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.pink-icon { background-color: rgba(212, 0, 74, 0.1); color: var(--primary-pink); }
.yellow-icon { background-color: rgba(254, 255, 69, 0.1); color: var(--accent-yellow); }
.purple-icon { background-color: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.metric-val {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.6rem;
    color: var(--text-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-chart-section {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-title {
    font-size: 0.75rem;
    font-weight: 600;
}

.chart-tag {
    font-size: 0.65rem;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.chart-container {
    height: 80px;
    position: relative;
}

.sparkline {
    width: 100%;
    height: 100%;
}

.glow-dot {
    filter: drop-shadow(0 0 4px #feff45);
}

/* Mockup Overlays */
.mockup-overlay {
    position: absolute;
    background-color: rgba(17, 34, 64, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.badge-overlay-top {
    top: 25px;
    right: -25px;
    border-left: 3px solid #10b981;
}

.overlay-check {
    color: #10b981;
}

.badge-overlay-bottom {
    bottom: -15px;
    left: -20px;
    border-left: 3px solid var(--primary-pink);
}

.overlay-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
}

/* SOBRE A SAFÍNEA SECTION (LIGHT SECTION) */
.sobre-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 120px 0;
    position: relative;
}

.sobre-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.sobre-image-column {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 60px;
    height: 60px;
    border-top: 4px solid var(--primary-pink);
    border-left: 4px solid var(--primary-pink);
    border-radius: 16px 0 0 0;
    z-index: 1;
}

.partners-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    filter: brightness(0.95) contrast(1.05);
}

.image-overlay-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(9, 25, 47, 0.4);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.overlay-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-yellow);
}

.overlay-card-sub {
    font-size: 0.75rem;
    color: var(--text-muted-light);
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-pink);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-muted-dark);
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 0, 74, 0.06);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* DIFERENCIAIS SECTION (DARK) */
.diferenciais-section {
    background-color: var(--bg-dark);
    padding: 120px 0;
    position: relative;
}

.glow-diferenciais-1 {
    width: 600px;
    height: 600px;
    background-color: var(--glow-yellow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-header {
    margin-bottom: 64px;
}

.section-header.text-center {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted-light);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.diferencial-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 255, 69, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(254, 255, 69, 0.05);
}

.diferencial-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(254, 255, 69, 0.08);
    color: var(--accent-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

.diferencial-card p {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    line-height: 1.6;
}

/* APP EXCLUSIVO SECTION (DARK WITH PINK ACCENTS) */
.app-section {
    background-color: var(--bg-dark-alt);
    padding: 120px 0;
}

.app-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.app-description {
    font-size: 1.1rem;
    color: var(--text-muted-light);
    margin-bottom: 40px;
}

.app-benefits {
    list-style: none;
    display: grid;
    gap: 24px;
}

.app-benefits li {
    display: flex;
    gap: 16px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(212, 0, 74, 0.15);
    color: var(--primary-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.app-benefits strong {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.app-benefits p {
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

/* PORTAL SHOWCASE MOCKUP */
.app-image-column {
    display: flex;
    justify-content: center;
}

.portal-showcase-container {
    width: 100%;
    max-width: 400px;
    perspective: 1000px;
}

.portal-window {
    background-color: #0b1528;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    height: 340px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.portal-window:hover {
    transform: rotateY(-5deg) rotateX(2deg);
    border-color: rgba(212, 0, 74, 0.3);
}

.portal-sidebar {
    width: 50px;
    background-color: #070e1b;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 32px;
}

.sidebar-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition);
}

.menu-dot.active {
    background-color: var(--accent-yellow);
    box-shadow: 0 0 8px var(--accent-yellow);
}

.portal-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.body-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.body-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.body-status {
    font-size: 0.65rem;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.project-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.project-item.active {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.project-info {
    display: flex;
    flex-direction: column;
}

.project-name {
    font-size: 0.75rem;
    font-weight: 500;
}

.project-date {
    font-size: 0.6rem;
    color: var(--text-muted-light);
}

.project-badge {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.project-badge.yellow { background-color: rgba(254, 255, 69, 0.1); color: var(--accent-yellow); }
.project-badge.green { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.project-badge.blue { background-color: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.upload-box {
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-muted-light);
    cursor: pointer;
    transition: var(--transition);
}

.upload-box:hover {
    border-color: var(--primary-pink);
    color: var(--text-light);
}

/* SERVIÇOS SECTION (LIGHT) */
.servicos-section {
    background-color: var(--bg-light-alt);
    padding: 120px 0;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background-color: var(--bg-light);
    color: var(--text-muted-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.tab-btn:hover {
    color: var(--text-dark);
    border-color: rgba(15, 23, 42, 0.2);
}

.tab-btn.active {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
    box-shadow: 0 8px 20px rgba(9, 25, 47, 0.15);
}

/* Tab Pane content handling */
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-slow);
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background-color: var(--bg-light);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(9, 25, 47, 0.08);
}

.plan-tag-top {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-dark);
    margin-bottom: 16px;
    display: block;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    margin-bottom: 32px;
    min-height: 54px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
}

.plan-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: 700;
}

.btn-card {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(15, 23, 42, 0.1);
    width: 100%;
}

.btn-card:hover {
    background-color: var(--bg-dark);
    border-color: var(--bg-dark);
    color: var(--text-light);
}

/* Plano Destaque (Featured Center Card) */
.plan-card.featured {
    background-color: var(--bg-dark);
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 20px 45px rgba(9, 25, 47, 0.25);
    z-index: 2;
}

.plan-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(254, 255, 69, 0.1);
}

.plan-card.featured .plan-name {
    color: var(--text-light);
}

.plan-card.featured .plan-desc {
    color: var(--text-muted-light);
}

.plan-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-card.featured .plan-features li::before {
    color: var(--accent-yellow);
}

.featured-tag {
    color: var(--accent-yellow) !important;
    font-weight: 700;
}

.btn-featured {
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(254, 255, 69, 0.2);
}

.btn-featured:hover {
    background-color: #f7f827;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 255, 69, 0.35);
}

/* PORTFÓLIO SECTION (LIGHT) */
.portfolio-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 120px 0;
    position: relative;
}

.glow-portfolio-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(212, 0, 74, 0.05);
    bottom: -10%;
    right: -10%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.portfolio-card {
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: var(--transition-slow);
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    transition: var(--transition-slow);
}

.portfolio-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition-slow);
}

.brand-logo-svg {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-light);
    text-align: center;
}

.card-hover-info {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 32px;
    opacity: 0;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.case-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.85;
}

.case-desc {
    font-size: 0.95rem;
    margin-bottom: 16px;
    max-width: 280px;
    opacity: 0.9;
}

.view-project {
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1.5px solid currentColor;
    padding-bottom: 2px;
}

/* Hover effects */
.portfolio-card:hover .card-bg-overlay {
    transform: scale(1.06);
    filter: brightness(0.4) blur(4px);
}

.portfolio-card:hover .portfolio-logo {
    transform: translateY(-40px);
    opacity: 0;
}

.portfolio-card:hover .card-hover-info {
    bottom: 0;
    opacity: 1;
}

/* PORTFOLIO BRANDS SPECIFIC IMPLEMENTATIONS */
/* Brand 1: Academia da Mente (Red/Coral) */
.card-academia-mente .card-bg-overlay {
    background: linear-gradient(135deg, #d4004a 0%, #ff4b2b 100%);
}

.wave-pattern {
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
                      radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 25%);
}

/* Brand 2: Autoescola Nova (Yellow) */
.card-autoescola-nova {
    background-color: #ffd200;
}

.card-autoescola-nova .card-bg-overlay {
    background-color: #ffd200;
}

.nova-logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nova-n {
    font-size: 4.2rem;
    font-weight: 900;
    color: #000000;
    line-height: 1;
}

.nova-text {
    display: flex;
    flex-direction: column;
}

.nova-sub {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    line-height: 1;
    margin-bottom: 4px;
}

.nova-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    letter-spacing: -0.5px;
}

.nova-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    overflow: hidden;
    z-index: 2;
}

.nova-blue-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e3a8a;
}

.nova-white-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120%;
    height: 60%;
    background-color: #ffffff;
    border-radius: 100% 100% 0 0;
    transform: rotate(-1deg);
}

.text-dark-hover {
    color: #000000 !important;
}

.portfolio-card:hover.card-autoescola-nova .card-bg-overlay {
    filter: brightness(0.2) blur(4px);
}

.portfolio-card:hover.card-autoescola-nova .card-hover-info {
    color: #ffffff;
}

/* Brand 3: LA (Green Luxury) */
.card-la .card-bg-overlay {
    background: radial-gradient(circle, #0c2b18 0%, #03150b 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

.luxury-green {
    background-image: linear-gradient(rgba(213, 180, 103, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(213, 180, 103, 0.03) 1px, transparent 1px);
    background-size: 15px 15px;
}

/* Brand 4: Augusto Marques (Navy Blue) */
.card-augusto-marques .card-bg-overlay {
    background: linear-gradient(135deg, #09192f 0%, #0d223d 100%);
}

.augusto-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.outline-rect {
    width: 64px;
    height: 64px;
    border: 2px solid #ffffff;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 8px;
}

.solid-yellow-square {
    width: 14px;
    height: 14px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.augusto-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.augusto-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.augusto-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* CTA FINAL SECTION (DARK) */
.cta-final-section {
    background-color: var(--bg-dark);
    padding: 120px 0;
    position: relative;
}

.glow-cta-1 {
    width: 400px;
    height: 400px;
    background-color: var(--glow-pink);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.glow-cta-2 {
    width: 400px;
    height: 400px;
    background-color: var(--glow-yellow);
    top: 50%;
    right: 20%;
    transform: translate(50%, -50%);
}

.cta-box {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-final {
    padding: 18px 48px;
    font-size: 1.05rem;
}

/* CONTATO / FOOTER SECTION (LIGHT) */
.contato-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 120px 0 60px 0;
}

.contact-header {
    margin-bottom: 64px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.contact-item {
    background-color: var(--bg-light-alt);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(15, 23, 42, 0.12);
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wa-bg { background-color: #25d366; }
.ig-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tt-bg { background-color: #000000; }
.email-bg { background-color: var(--primary-pink); }

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    margin-bottom: 6px;
}

.contact-val {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    word-break: break-all;
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 48px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 0.85rem;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20ba59;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-phrase {
        border-left: none;
        border-top: 2px solid var(--primary-pink);
        padding-left: 0;
        padding-top: 16px;
        max-width: 400px;
    }
    
    .sobre-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .sobre-image-column {
        order: 2;
    }
    
    .sobre-content-column {
        order: 1;
    }
    
    .app-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .plan-card.featured {
        transform: none !important;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(9, 25, 47, 0.98);
        backdrop-filter: blur(15px);
        border-left: 1px solid var(--border-light);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-slow);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .diferenciais-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-ctas {
        width: 100%;
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-nav {
        display: none;
    }
    
    .image-overlay-card {
        right: -10px;
        bottom: -10px;
        padding: 12px 16px;
    }
    
    .badge-overlay-top, .badge-overlay-bottom {
        display: none;
    }
}

/* ENTRANCE SCROLL REVEAL (JS controlled) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* PORTFOLIO IMAGES STYLING */
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.06);
    filter: brightness(0.3) blur(2px);
}

/* BRAND LOGO IMAGE STYLING */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.mockup-logo-img {
    height: 20px;
    width: auto;
    display: block;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
}
