:root {
    --primary-color: #00d4ff;
    --primary-hover: #00b8e6;
    --secondary-color: #6c757d;
    --bg-dark: #0a0a0f;
    --bg-card: #1a1a2e;
    --bg-surface: #16213e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #2a2a3e;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --navbar-font: Inter, sans-serif;
    --navbar-font-size: 16px;
}

[data-bs-theme="light"] {
    --bg-dark: #ffffff;
    --bg-card: #f8f9fa;
    --bg-surface: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
}

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

.min-vh-75 {
    min-height: 75vh;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 70px;
}

/* Navbar - Estilo Transparente + borda gradiente */
#mainNav {
    background: transparent !important;
    backdrop-filter: none;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

#mainNav.scrolled {
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="light"] #mainNav.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
}

[data-bs-theme="light"] #mainNav {
    background: transparent !important;
}

.brand-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.brand-dot {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand {
    font-size: 1.5rem;
    text-decoration: none !important;
}

/* Nav links - Ícones + Hover moderno */
#mainNav .navbar-nav .nav-link {
    position: relative;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    font-size: var(--navbar-font-size, 1rem) !important;
    letter-spacing: 0.5px;
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--navbar-font, inherit) !important;
    text-transform: uppercase;
}

#mainNav .navbar-nav .nav-link i {
    font-size: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

#mainNav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: width 0.3s ease, left 0.3s ease;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

#mainNav .navbar-nav .nav-link:hover i {
    transform: translateY(-2px);
    color: var(--primary-color);
}

#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Dropdown */
#mainNav .dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.6rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

[data-bs-theme="light"] #mainNav .dropdown-menu {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#mainNav .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#mainNav .dropdown-item {
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    font-size: var(--navbar-font-size, 1rem) !important;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--navbar-font, inherit) !important;
}

#mainNav .dropdown-item i {
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.2s ease;
}

#mainNav .dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    transform: translateX(4px);
}

#mainNav .dropdown-item:hover i {
    opacity: 1;
    color: var(--primary-color);
}

/* User menu / Theme toggle */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease !important;
}

.theme-toggle-btn:hover {
    background: rgba(0, 212, 255, 0.15) !important;
    border-color: rgba(0, 212, 255, 0.3);
    transform: rotate(15deg);
}

[data-bs-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-bs-theme="light"] .theme-toggle-btn:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    border-color: rgba(0, 212, 255, 0.3);
}

#mainNav .navbar-nav .nav-link.btn-link {
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#mainNav .navbar-nav .nav-link.btn-link:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* Theme toggle icon animation */
#themeIcon {
    transition: transform 0.5s ease;
}

#mainNav .nav-link.btn-link:hover #themeIcon {
    transform: rotate(20deg);
}

/* Dropdown divider */
#mainNav .dropdown-divider {
    border-color: var(--border-color);
    margin: 0.3rem 0;
}

/* Parent item in dropdown */
#mainNav .dropdown-item-parent {
    font-weight: 600;
    color: var(--primary-color) !important;
}

#mainNav .dropdown-item-parent:hover {
    background: rgba(0, 212, 255, 0.15) !important;
}

#mainNav .dropdown-item-parent .badge {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    #mainNav .navbar-nav {
        padding: 1rem 0;
        gap: 0.25rem;
    }

    #mainNav .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }

    #mainNav .navbar-nav .nav-link::after {
        display: none;
    }

    #mainNav .navbar-nav .nav-link:hover {
        background: rgba(0, 212, 255, 0.1);
    }

    #mainNav .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    #mainNav .dropdown-item {
        padding: 0.5rem 1rem;
    }
}

/* Animations */
@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Carousel - Moved to carousel-3d.css */

/* Services */
.section-services {
    padding: 8rem 0;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

.section-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 40%);
    z-index: 0;
}

.section-services .container {
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(42, 42, 62, 0.5);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 25px 50px rgba(0, 212, 255, 0.15),
        0 0 0 1px rgba(0, 212, 255, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-hover);
}

/* Page Header */
.page-header {
    padding: 6rem 0 3rem;
    text-align: center;
    background: var(--bg-surface);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Service Hero - Detail Page */
.service-hero {
    position: relative;
    padding: 6rem 0 3rem;
    overflow: hidden;
    min-height: 30vh;
    display: flex;
    align-items: center;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(124, 58, 237, 0.12) 50%, rgba(10, 10, 15, 1) 100%);
    z-index: 0;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 212, 255, 0.12);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* Service Detail */
.service-detail {
    position: relative;
}

.service-detail-image-wrapper {
    position: relative;
}

.service-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.service-detail-img:hover {
    transform: scale(1.02);
}

.service-detail-image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: var(--accent-gradient);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.3;
}

.service-detail-content {
    padding: 1rem 0;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 1.25rem;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 20px 45px rgba(0, 212, 255, 0.35);
}

.service-detail-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-detail-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
}

.service-detail-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-detail-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Services Hero - Listing Page */
.services-hero {
    position: relative;
    padding: 6rem 0 3rem;
    overflow: hidden;
    text-align: center;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, rgba(10, 10, 15, 1) 100%);
    z-index: 0;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Listing Cards */
.services-listing {
    position: relative;
    background: var(--bg-dark);
}

.service-listing-card {
    display: block;
    height: 100%;
}

.service-listing-card-inner {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(42, 42, 62, 0.5);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.service-listing-card:hover .service-listing-card-inner {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.service-listing-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-listing-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-listing-card:hover .service-listing-card-img {
    transform: scale(1.1);
}

.service-listing-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.8) 100%);
}

.service-listing-card-icon-wrapper {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    font-size: 3.5rem;
    color: var(--primary-color);
}

.service-listing-card-body {
    padding: 1.75rem;
}

.service-listing-card-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.service-listing-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-listing-card:hover .service-listing-card-title {
    color: var(--primary-color);
}

.service-listing-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-listing-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-listing-card:hover .service-listing-card-link {
    letter-spacing: 1px;
}

.service-listing-card-link i {
    transition: transform 0.3s ease;
}

.service-listing-card:hover .service-listing-card-link i {
    transform: translateX(5px);
}

/* About Hero */
.about-hero {
    position: relative;
    padding: 6rem 0 3rem;
    overflow: hidden;
    text-align: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, rgba(10, 10, 15, 1) 100%);
    z-index: 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* About Profile */
.about-profile {
    position: relative;
}

.about-photo-wrapper {
    position: relative;
    display: inline-block;
}

.about-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.2);
}

.about-photo-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    border: 4px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

.about-photo-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 2;
}

.about-photo-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.2);
}

.about-photo-ring {
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.about-photo-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    z-index: 3;
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.about-name {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-role {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Content Card */
.about-content-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(42, 42, 62, 0.5);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.3s ease;
}

.about-content-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.about-content-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-content-card .about-text {
    margin-top: 0.5rem;
}

/* Skills */
.section-skills {
    padding: 5rem 0;
    background: var(--bg-surface);
}

.skill-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.skill-card:hover {
    border-color: var(--primary-color);
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Service Detail */
.section-service-detail {
    padding: 5rem 0;
}

.service-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Technologies */
.section-technologies {
    padding: 5rem 0;
    background: var(--bg-surface);
}

.tech-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.tech-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Service Detail Cards */
.section-services-detail {
    padding: 5rem 0;
}

.service-detail-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-detail-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-detail-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Features */
.section-features {
    padding: 5rem 0;
    background: var(--bg-surface);
}

.feature-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Process */
.section-process {
    padding: 5rem 0;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.process-step h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact */
.section-contact {
    padding: 5rem 0;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.contact-form .input-group-text {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
}

/* Character counter */
.char-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: right;
    margin-top: 0.25rem;
}

.char-count.warning {
    color: #ffc107;
}

.char-count.warning span {
    color: #dc3545;
}

/* CAPTCHA */
.captcha-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.captcha-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.captcha-input {
    width: 80px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Form notice */
.form-notice {
    text-align: center;
    color: var(--text-secondary);
}

.form-notice i {
    color: var(--primary-color);
}

/* Contact download */
.contact-download .btn {
    border-width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.stepper-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stepper-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: var(--bg-surface);
    transition: all 0.3s;
}

.stepper-step.active .stepper-circle {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.stepper-step.completed .stepper-circle {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.stepper-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.stepper-step.active .stepper-label {
    color: var(--text-primary);
}

.stepper-step.completed .stepper-label {
    color: var(--primary-color);
}

.stepper-line {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin: 0 0.75rem;
    transition: background 0.3s;
}

.stepper-line.active {
    background: var(--primary-color);
}

.stepper-panel {
    display: none;
}

.stepper-panel.active {
    display: block;
    animation: fadeInUpSmall 0.3s ease;
}

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

.stepper-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stepper-nav .btn {
    min-width: 140px;
}

/* Validation errors */
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* CTA */
.section-cta {
    padding: 8rem 0;
    background: var(--accent-gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.section-cta .container {
    position: relative;
    z-index: 1;
}

.section-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-cta p {
    margin-bottom: 2rem;
    opacity: 0.95;
    font-size: 1.2rem;
}

/* Auth */
.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.auth-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

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

.auth-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.auth-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-card .form-label {
    font-weight: 500;
}

.auth-card .form-control {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.auth-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.auth-card .input-group-text {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-surface);
    padding: 0;
    border-top: none;
    position: relative;
}

.footer-gradient-bar {
    height: 2px;
    background: var(--accent-gradient);
    width: 100%;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: var(--accent-gradient);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.btn-outline-light {
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Admin Panel */
.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.admin-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.admin-list-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.admin-list-item:last-child {
    border-bottom: none;
}

.message-content {
    background: var(--bg-surface);
    border-radius: 8px;
    padding: 1.5rem;
    line-height: 1.8;
}

.table-dark {
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--border-color);
}

.table-dark th {
    background: var(--bg-surface);
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-services,
    .section-cta {
        padding: 5rem 0;
    }
}

/* Light mode card overrides */
[data-bs-theme="light"] .service-card,
[data-bs-theme="light"] .skill-card,
[data-bs-theme="light"] .tech-card,
[data-bs-theme="light"] .feature-card,
[data-bs-theme="light"] .contact-form,
[data-bs-theme="light"] .auth-card {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-bs-theme="light"] .footer {
    background: var(--bg-surface);
}

/* Home Intro Section */
#home-intro {
    text-align: center;
}

#home-intro .profile-photo {
    max-width: 250px;
    margin: 0 auto;
    border: 4px solid var(--primary-color);
    padding: 4px;
}

.profile-photo-avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto;
    border: 4px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-photo-avatar:hover {
    transform: scale(1.05);
}

#home-intro .section-title {
    text-align: center;
}

#home-intro .lead {
    color: var(--text-secondary);
    text-align: center;
}

#home-intro p.mb-4 {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#home-intro .btn-primary {
    text-align: center;
}

/* Contact Form */
/* Contact Hero */
.contact-hero {
    position: relative;
    padding: 6rem 0 3rem;
    overflow: hidden;
    text-align: center;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 15, 1) 100%);
    z-index: 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(42, 42, 62, 0.5);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: border-color 0.3s ease;
}

.contact-form-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.contact-form-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-input-wrapper {
    position: relative;
}

.contact-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.9rem;
    z-index: 2;
}

.contact-textarea-wrapper .contact-input-icon {
    top: 18px;
    transform: none;
}

.contact-input {
    padding-left: 48px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(10, 10, 15, 0.5);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.contact-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* Contact Steps */
.contact-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s;
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background: var(--primary-color);
    color: #fff;
}

.step.completed .step-number {
    background: #28a745;
    color: #fff;
}

.step-label {
    font-weight: 500;
    font-size: 0.9rem;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin: 0 16px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Contact Footer Bar */
.contact-footer-bar {
    background: rgba(26, 26, 46, 0.4);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
}

.contact-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-footer-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

a.contact-footer-item:hover {
    color: var(--primary-color);
}

.contact-footer-divider {
    width: 1px;
    height: 16px;
    background: var(--border-color);
}

.contact-footer-social {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-footer-social:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
}

.contact-email-link {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-email-link:hover {
    opacity: 0.8;
}

.contact-info-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info-item {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-info-item a {
    color: inherit;
    text-decoration: none;
}

.contact-info-item a:hover {
    opacity: 0.8;
}

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

/* Service Pages Responsive */
@media (max-width: 991.98px) {
    .service-hero {
        padding: 5rem 0 2rem;
        min-height: auto;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .services-hero {
        padding: 5rem 0 2rem;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .service-detail-img {
        height: 300px;
    }

    .service-detail-image-accent {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .service-hero {
        padding: 4rem 0 1.5rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 1rem;
    }

    .services-hero {
        padding: 4rem 0 1.5rem;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-detail-img {
        height: 250px;
    }

    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-listing-card-img-wrapper,
    .service-listing-card-icon-wrapper {
        height: 180px;
    }
}

/* About Page Responsive */
@media (max-width: 991.98px) {
    .about-hero {
        padding: 5rem 0 2rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-photo {
        width: 180px;
        height: 180px;
    }

    .about-photo-placeholder {
        width: 180px;
        height: 180px;
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 4rem 0 1.5rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-photo {
        width: 150px;
        height: 150px;
    }

    .about-photo-placeholder {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }

    .about-content-card {
        padding: 2rem;
    }

    .about-content-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -12px;
        left: 20px;
    }
}

/* Contact Page Responsive */
@media (max-width: 991.98px) {
    .contact-hero {
        padding: 5rem 0 2rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 4rem 0 1.5rem;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .step-line {
        width: 40px;
        margin: 0 10px;
    }

    .contact-footer-inner {
        gap: 0.75rem;
    }

    .contact-footer-item {
        font-size: 0.8rem;
    }

    .contact-footer-divider {
        display: none;
    }
}

/* Dynamic Page */
.page-hero {
    position: relative;
    padding: 10rem 0 4rem;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 1) 100%);
}

.page-hero-simple {
    padding: 8rem 0 3rem;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, rgba(10, 10, 15, 1) 100%);
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

@media (max-width: 767.98px) {
    .page-hero {
        padding: 7rem 0 2rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-simple {
        padding: 6rem 0 2rem;
    }
}

/* ============================================================
   SEGURANCA - HONEYPOT (campo escondido contra bots)
   ============================================================ */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
    tab-index: -1;
}
