/* ==========================================================================
   CSS DESIGN SYSTEM - RAFAEL ILÍDIO NAZARÉ MUNGUAMBE
   Estilo: Moderno, Corporativo, Premium
   Cores: Azul Escuro (Confiança), Dourado (Autoridade), Branco (Clareza)
   ========================================================================== */

/* Custom Variables */
:root {
    --primary: #0a192f;        /* Deep Navy Blue */
    --primary-light: #112240;  /* Lighter Navy Blue for cards */
    --primary-dark: #020c1b;   /* Very Dark Navy for backgrounds */
    --accent: #d4af37;         /* Gold Accent */
    --accent-hover: #b89028;   /* Darker Gold for hover states */
    --accent-rgb: 212, 175, 55;
    --text-light: #f8fafc;     /* Off-White text */
    --text-muted: #94a3b8;     /* Muted Grey/Blue text */
    --text-dark: #0f172a;      /* Dark Slate for light sections */
    --white: #ffffff;
    --success: #25d366;        /* WhatsApp Green */
    --success-hover: #20ba5a;
    --card-bg: rgba(17, 34, 64, 0.6);
    --card-hover: rgba(23, 42, 79, 0.8);
    --border-glow: rgba(212, 175, 55, 0.15);
    --border-glow-hover: rgba(212, 175, 55, 0.4);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-light);
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Reusable Containers & Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: inline-block;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-light) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button & Link Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--success);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-full {
    width: 100%;
}

/* Glow Background Effects */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.glow-orb-primary {
    background: var(--accent);
    width: 400px;
    height: 400px;
}

.glow-orb-secondary {
    background: #3b82f6;
    width: 300px;
    height: 300px;
}

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

.header.scrolled {
    background: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--accent) 0%, #f3e5ab 100%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: block;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: var(--transition);
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary-light);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 3rem;
        gap: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transition: 0.5s ease-in-out;
        z-index: 99;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--accent);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--accent);
    }
    
    .nav-cta {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-tag svg {
    fill: var(--accent);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

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

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 12, 27, 0.8) 0%, rgba(2, 12, 27, 0) 40%);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-badge-glow {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border: 1px solid var(--accent);
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: var(--shadow-gold);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .hero-badge-glow {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px;
        width: 80%;
    }
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.badge-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Trust Stats Bar */
.stats-section {
    padding: 3rem 0;
    background: var(--primary-light);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-title {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Section: Sobre */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.about-visual {
    position: relative;
}

.about-decor-box {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--accent);
    border-left: 3px solid var(--accent);
    pointer-events: none;
}

.about-card {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--accent);
    z-index: -1;
    pointer-events: none;
}

.about-title-tag {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.about-statement {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pillar-item {
    display: flex;
    gap: 1.25rem;
}

.pillar-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 1.2rem;
}

.pillar-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.pillar-content p {
    font-size: 0.85rem;
}

/* Section: Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--card-hover);
    border-color: var(--border-glow-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--primary-dark);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

/* Problem-Solution-Benefit Sublayout inside Card */
.service-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-detail-item {
    font-size: 0.85rem;
    line-height: 1.5;
}

.detail-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.detail-label.label-problem {
    color: #ef4444; /* Soft Red */
}

.detail-label.label-solution {
    color: var(--accent);
}

.detail-label.label-benefit {
    color: var(--success);
}

.service-detail-item p {
    color: var(--text-light);
}

.service-detail-item.problem-text p {
    color: var(--text-muted);
    font-style: italic;
}

.service-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.service-cta-link svg {
    transition: var(--transition);
}

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

.service-cta-link:hover svg {
    transform: translateX(5px);
}

/* Section: Experiência */
.experience-layout {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline {
    position: relative;
    padding-left: 3rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 7.5px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(212, 175, 55, 0.15);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

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

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 6px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--primary-dark);
    border: 3px solid var(--accent);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-title-group h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-company {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.timeline-date {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    border-color: var(--border-glow-hover);
    background: var(--card-hover);
    box-shadow: var(--shadow-md);
}

.timeline-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-achievements {
    list-style: none;
}

.timeline-achievements li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.timeline-achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.timeline-achievements li:last-child {
    margin-bottom: 0;
}

/* Section: Competências */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.skills-column-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.skills-column-title svg {
    color: var(--accent);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
}

.skill-name {
    color: var(--text-light);
}

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

.skill-bar {
    height: 6px;
    background: var(--primary-light);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(to right, var(--accent), #f3e5ab);
    border-radius: 4px;
    width: 0; /* Animated via JS */
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Competências Comportamentais (Cards visual) */
.skills-soft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .skills-soft-grid {
        grid-template-columns: 1fr;
    }
}

.soft-skill-card {
    background: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

.soft-skill-card:hover {
    border-color: var(--accent);
    background: var(--card-hover);
    transform: translateY(-5px);
}

.soft-icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.soft-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.soft-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Section: Prova / Credibilidade (OCAM Destaque) */
.credibility-section {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%), var(--primary-light);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 991px) {
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.credibility-badge-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: rgba(10, 25, 47, 0.6);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    text-align: center;
}

.ocam-seal {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #ffeaa7 100%);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
}

.ocam-seal::before {
    content: '⭐';
    position: absolute;
    font-size: 0.8rem;
    transform: translateY(-38px);
}

.credibility-badge-large h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.credibility-badge-large p {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.credibility-cert-details {
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    width: 100%;
}

.credibility-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.credibility-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.credibility-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.cred-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.cred-feature-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Testimonials Carousel (Placeholder) */
.testimonials-section {
    position: relative;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    background: var(--primary-light);
    border: 1px solid var(--border-glow);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.testimonial-quote::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-name {
    font-weight: 700;
    color: var(--accent);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Section: Contact & Conversion */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-header-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-header-text p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-item-icon {
    width: 46px;
    height: 46px;
    background: var(--primary-light);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.contact-item-content p, .contact-item-content a {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-item-content a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--primary-light);
    border: 1px solid var(--border-glow);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.75rem;
    }
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 480px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.form-control {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

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

/* Call To Action Banner Section */
.cta-banner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner-card {
    background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.1), transparent 60%),
                rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    padding: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .cta-banner-card {
        padding: 2.5rem 1.5rem;
    }
}

.cta-banner-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .cta-banner-card h2 {
        font-size: 1.85rem;
    }
}

.cta-banner-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .cta-banner-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-banner-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer styles */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand p {
    font-size: 0.85rem;
    max-width: 300px;
}

.footer-links-col h4 {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.credit-link {
    color: var(--accent);
    font-weight: 500;
}

.credit-link:hover {
    text-decoration: underline;
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.whatsapp-widget-btn {
    width: 60px;
    height: 60px;
    background-color: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
}

.whatsapp-widget-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--success);
    opacity: 0.7;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
    pointer-events: none;
}

.whatsapp-widget-btn:hover {
    background-color: var(--success-hover);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Animation utilities for JS Intersection Observer */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
