/* filepath: company_landing.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

:root {
    --vh: 1vh;
    --primary-color: #025982;
    --primary-rgb: 2, 89, 130;
    --primary-dark: #01425e;
    --primary-light: #e6f3f9;
    --accent-color: #ff6b6b;
    --accent-hover: #ff5252;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --bg-gradient-light: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    --border-color: #e2e8f0;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-speed: 0.3s;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes bottom space under images */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Section Styles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    overflow: visible !important;
}

.section-title::after {
    display: none !important;
}

.section-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-weight: 400;
    line-height: 1.7;
}

.container {
    width: 100%;
    max-width: 1200px; /* Slightly narrower for better content width */
    margin: 0 auto;
    padding: 0 1rem; /* Consistent padding */
}

/* Layout styles */
.company-page-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: var(--bg-white);
    position: relative;
    min-height: 100vh;
}

/* Global background animation for entire page */
.company-page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #ffffff;
    background-image: 
        radial-gradient(ellipse at top left, rgba(2, 89, 130, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(2, 89, 130, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(2, 89, 130, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(2, 89, 130, 0.015) 0%, transparent 50%);
    background-size: 800px 800px, 800px 800px, 800px 800px, 800px 800px;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 20% 80%, 80% 20%;
    }
    25% {
        background-position: 10% 10%, 90% 90%, 30% 70%, 70% 30%;
    }
    50% {
        background-position: 20% 0%, 80% 100%, 40% 60%, 60% 40%;
    }
    75% {
        background-position: 30% 10%, 70% 90%, 50% 50%, 50% 50%;
    }
}

.company-content {
    flex: 1;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
    z-index: 1;
    margin-top: 0 !important; /* Remove any top margin */
    margin-bottom: 0 !important; /* Remove any bottom margin */
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 0;
    margin: 0;
    z-index: 1;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--bg-gradient);
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.05;
}

.hero-background {
    display: none;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding: 0; /* Removido padding - será calculado dinamicamente */
    box-sizing: border-box;
}

/* Hero Text Zone */
.hero-text-zone {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 0.5rem; /* Reduzir espaçamento entre elementos em telas grandes */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 89, 130, 0.1);
    border-radius: 50px;
    padding: 0.6rem 1.2rem; /* Slightly reduced */
    margin-bottom: 1.5rem; /* Reduced margin */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.hero-badge:hover {
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.1rem;
}

.badge-text {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3.2rem); /* Slightly increased from clamp(1.8rem, 4vw, 3rem) */
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 0.8rem; /* Reduzido de 1.1rem para telas grandes */
    letter-spacing: -0.02em;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem); /* Slightly increased from clamp(0.9rem, 1.6vw, 1.1rem) */
    line-height: 1.55; /* Slightly increased from 1.5 */
    color: var(--text-secondary);
    margin-bottom: 1.2rem; /* Reduzido de 1.6rem para telas grandes */
    font-weight: 400;
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem; /* Slightly increased from 0.8rem */
    margin-bottom: 1.2rem; /* Reduzido de 1.6rem para telas grandes */
}

.stat-item {
    text-align: center;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem; /* Slightly increased from 1.4rem */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.15rem; /* Slightly increased from 0.1rem */
}

.stat-label {
    font-size: 0.8rem; /* Slightly increased from 0.75rem */
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto; /* Push to bottom of flex container */
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    padding: 0.85rem 1.7rem !important;
    border-radius: 50px !important;
    font-family: var(--font-display) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    justify-content: center !important;
    box-sizing: border-box !important; /* Ensure consistent box model */
}

.btn-hero-primary {
    background: var(--bg-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.4);
}

.btn-hero-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 1px solid rgba(2, 89, 130, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 89, 130, 0.3);
}

/* Hero Visual Zone */
.hero-visual-zone {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: none; /* Removido max-height fixo */
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 320px; /* Slightly increased from 300px */
    height: fit-content;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.1rem; /* Slightly increased from 1rem */
    margin-bottom: 0.7rem; /* Slightly increased from 0.6rem */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem; /* Slightly increased from 0.8rem */
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-card-1 {
    transform: translateX(-20px) rotate(-2deg);
    z-index: 3;
}

.hero-card-2 {
    transform: translateX(10px) rotate(1deg);
    z-index: 2;
    margin-top: -1rem;
}

.hero-card-3 {
    transform: translateX(-10px) rotate(-1deg);
    z-index: 1;
    margin-top: -1rem;
}

.card-icon {
    font-size: 1.7rem; /* Slightly increased from 1.6rem */
    width: 50px; /* Slightly increased from 48px */
    height: 50px; /* Slightly increased from 48px */
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(2, 89, 130, 0.3);
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 0.95rem; /* Slightly increased from 0.9rem */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem; /* Slightly increased from 0.3rem */
}

.card-content p {
    font-size: 0.8rem; /* Slightly increased from 0.75rem */
    color: var(--text-secondary);
    line-height: 1.35; /* Slightly increased from 1.3 */
    margin: 0;
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(2, 89, 130, 0.08), rgba(2, 89, 130, 0.03)); /* Slightly more visible */
    animation: float-gentle 8s ease-in-out infinite;
}

.element-1 {
    width: 80px; /* Slightly reduced */
    height: 80px;
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.element-2 {
    width: 50px; /* Slightly reduced */
    height: 50px;
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 65px; /* Slightly reduced */
    height: 65px;
    top: 65%;
    right: 25%;
    animation-delay: 4s;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--bg-gradient);
    z-index: 9999;
    transition: width 0.1s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes float-vertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.animate-fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.8s forwards;
}

.animate-slide-in-right {
    opacity: 0;
    animation: slideInRight 1s ease-out 0.5s forwards;
}

.animate-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-display);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* AI Interview Types Section */
.ai-interview-types {
    padding: 6rem 0;
    margin-top: 0 !important;
    background-color: var(--bg-white);
    position: relative;
    z-index: 2;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive columns */
    gap: 2rem; /* Consistent gap */
    margin-top: 3rem;
}

.interview-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.interview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.interview-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.interview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.interview-card:hover::after {
    right: -20px;
    opacity: 1;
}

.interview-card-icon {
    background: var(--bg-gradient);
    color: var(--text-white);
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    transition: var(--transition);
    position: relative;
}

.interview-card-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--bg-gradient);
    border-radius: inherit;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.interview-card:hover .interview-card-icon::before {
    opacity: 0.4;
}

.interview-card-icon svg {
    width: 24px;
    height: 24px;
}

.interview-card:hover .interview-card-icon {
    transform: scale(1.1) rotate(-3deg);
}

.interview-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.interview-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns on large screens */
    gap: 2rem; /* Consistent gap */
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 1.5rem;
    }
}

.benefit-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05), transparent);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    background: var(--bg-gradient);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    transition: var(--transition);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(-3deg);
}

.benefit-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.benefit-content h3 a.benefit-link {
    color: inherit; /* Inherit color from h3 */
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.benefit-content h3 a.benefit-link:hover {
    color: var(--accent-color); /* Or your preferred hover color */
    text-decoration: underline;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0; /* Standard section padding */
    background-color: var(--bg-white);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-gradient);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.cta-title {
    color: var(--text-white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    position: relative;
    z-index: 1;
}
.cta-title:after {
    background: var(--accent-color);
}

.cta-description {
    color: var(--primary-light); /* Lighter text on dark background */
}

.cta-form input {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--bg-white);
}
.cta-form input::placeholder {
    color: rgba(255,255,255,0.7);
}
.cta-button { /* Assuming a .cta-button class similar to .btn-primary */
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-color: var(--accent-color);
}
.cta-button:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}


/* Contato Section */
.contato-section {
    padding: 6rem 0; /* Standard section padding */
    background-color: var(--bg-white);
}

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

.contato-info h3, 
.contato-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contato-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.5rem; /* If using icon font */
}
.contato-icon svg { /* If using SVG icons */
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.contato-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}
.contato-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin:0;
}
.contato-social {
    margin-top: 2rem;
}
.social-link {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.5rem; /* Adjust if using icon font */
    transition: color var(--transition-speed) ease;
}
.social-link:hover {
    color: var(--accent-color);
}

.contato-form .form-group {
    margin-bottom: 1.5rem;
}
.contato-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}
.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}
.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
    background: var(--bg-white);
}
.contato-form textarea {
    min-height: 120px;
    resize: vertical;
}
.contato-button { /* Assuming a .contato-button class similar to .btn-primary */
    width: 100%;
    background-color: var(--primary-color) !important;
    color: var(--bg-white) !important;
    border-color: var(--primary-color) !important;
}

.contato-button:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

/* AI Interview Simulation (Hero Visual) */
.hero-candidate-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.interview-simulation {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    animation: float-vertical 6s ease-in-out infinite;
}

.ai-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
}

.ai-avatar i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.ai-pulse {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.interview-dialogue {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dialogue-bubble {
    padding: 0.875rem 1.25rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.875rem;
    line-height: 1.5;
    position: relative;
}

.dialogue-bubble p {
    margin: 0;
    color: inherit;
}

.ai-bubble {
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    color: var(--text-primary);
    align-self: flex-start;
    max-width: 90%;
}

.user-bubble {
    background: var(--bg-gradient);
    color: var(--text-white);
    align-self: flex-end;
    max-width: 85%;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: float-vertical 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.float-icon:nth-child(1) {
    top: -10px;
    right: -20px;
}

.float-icon:nth-child(2) {
    bottom: 20%;
    left: -25px;
}

.float-icon:nth-child(3) {
    bottom: -10px;
    right: 20%;
}

.float-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Stats Band Section */
.stats-band {
    background: var(--bg-gradient);
    color: var(--text-white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.1;
}

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

.stats-band-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stats-band-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stats-band-item:hover::before {
    opacity: 1;
}

.stats-band-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.stats-band-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stats-band-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    color: var(--text-white);
}

@media (max-width: 768px) {
    .stats-band-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stats-band {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .stats-band-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .stats-band-item {
        padding: 1.25rem 1rem;
    }
    .stats-band-number {
        font-size: 1.5rem;
    }
}

/* Media queries para diferentes tamanhos de tela */
@media (max-width: 1200px) {
    .hero-section {
        height: 100vh; /* Mantém 100vh em telas médias */
        min-height: 100vh;
        max-height: none;
        padding: 0;
    }
    
    .hero-content-grid {
        gap: 2rem;
        max-height: none; /* Removido max-height fixo */
    }
    
    .hero-text-zone {
        padding-right: 1rem;
        gap: 0.6rem; /* Menor espaçamento entre elementos */
    }
    
    .hero-title {
        margin-bottom: 0.9rem;
    }
    
    .hero-description {
        margin-bottom: 1.3rem;
    }
    
    .hero-stats {
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 992px) { /* Tablet */
    .hero-section {
        height: 100vh; /* Mantém 100vh em tablets */
        min-height: 100vh;
        max-height: none;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        max-height: none;
        overflow-y: visible;
        min-height: auto;
        /* If hero-visual-zone is hidden, text-zone might need more centering or specific alignment */
        align-content: center; /* Try to center content vertically */
    }
    
    .hero-text-zone {
        padding-right: 0;
        order: 1; /* Text zone comes first if visual is hidden */
        height: auto;
        gap: 1rem; /* Increased gap for better spacing */
        justify-content: center; /* Center content vertically */
        flex-grow: 1; /* Allow it to take available space */
    }
    
    .hero-visual-zone,
    .hero-candidate-visual {
        order: 1;
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        min-width: 200px !important; /* Increased size */
        max-width: 280px !important; /* Increased size */
        width: auto !important; /* Allow auto width within max */
        padding: 0.9rem 1.8rem !important; /* Increased padding */
        font-size: 1rem !important; /* Increased font size */
    }
}

@media (max-width: 768px) { /* Large Mobile / Small Tablet */
    html {
        font-size: 15px;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        max-height: none;
        padding: 0;
        margin-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Adjusted gap */
        text-align: center;
        max-height: none;
        overflow-y: visible;
        min-height: auto;
        padding: 0;
        display: flex; /* Ensure flex for centering */
        flex-direction: column;
        justify-content: center; /* Center content vertically */
        align-items: center;
    }
    
    .hero-text-zone {
        padding-right: 0;
        order: 1; /* Text zone is the only content now */
        height: auto;
        gap: 1.2rem; /* Further adjust spacing */
        width: 100%; /* Ensure it takes full width */
        max-width: 500px; /* Limit width for better readability */
        margin: 0 auto; /* Center the text zone */
    }
    
    .hero-visual-zone {
        display: none; /* Hide visual zone */
    }
    
    .hero-card-stack {
        /* Styles for card stack are not relevant if visual zone is hidden */
        display: none; 
    }
    
    .hero-card {
        /* Styles for cards are not relevant if visual zone is hidden */
        display: none;
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem); /* Increased font size */
        margin-bottom: 1rem; /* Adjusted margin */
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: clamp(1rem, 4vw, 1.2rem); /* Increased font size */
        margin-bottom: 1.5rem; /* Adjusted margin */
        line-height: 1.6;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem; /* Adjusted gap */
        margin-bottom: 1.8rem; /* Adjusted margin */
        max-width: 400px; /* Max width for stats */
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-number {
        font-size: 1.6rem; /* Increased font size */
    }
    
    .stat-label {
        font-size: 0.85rem; /* Increased font size */
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100% !important;
        max-width: 320px !important; /* Increased max-width */
        min-width: auto !important;
        padding: 1rem 1.8rem !important; /* Increased padding */
        font-size: 1.05rem !important; /* Increased font size */
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) { /* Small Mobile */
    .hero-section {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-content-grid {
        gap: 1rem; /* Adjusted gap */
        padding: 0.5rem 0;
    }
    
    .hero-text-zone {
        gap: 1rem; /* Adjusted gap */
        max-width: 450px; /* Adjust max-width if needed */
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem); /* Adjusted font size */
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 4.5vw, 1.1rem); /* Adjusted font size */
        margin-bottom: 1.2rem;
    }
    
    .hero-visual-zone,
    .hero-candidate-visual {
        display: none; /* Ensure it's hidden */
    }
    
    .hero-card-stack {
        display: none; /* Ensure it's hidden */
    }
    
    .hero-card {
        display: none; /* Ensure it's hidden */
    }

    .hero-stats {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        max-width: 350px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        max-width: 300px !important; /* Adjusted */
        padding: 0.9rem 1.6rem !important; /* Adjusted */
        font-size: 1rem !important; /* Adjusted */
    }
}

@media (max-width: 375px) { /* Very Small Mobile */
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-section {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero-content-grid {
        gap: 0.8rem; /* Adjusted gap */
        padding: 0.3rem 0;
    }
    
    .hero-text-zone {
        gap: 0.8rem; /* Adjusted gap */
    }

    .hero-title {
        font-size: clamp(1.7rem, 8.5vw, 2.3rem); /* Adjusted font size */
    }

    .hero-description {
        font-size: clamp(0.9rem, 4.5vw, 1.05rem); /* Adjusted font size */
    }
    
    .hero-visual-zone,
    .hero-candidate-visual {
        display: none; /* Ensure it's hidden */
    }
    
    .hero-card-stack {
        display: none; /* Ensure it's hidden */
    }
    
    .hero-card {
        display: none; /* Ensure it's hidden */
    }

    .hero-stats {
        /* Consider stacking stats if they don't fit well */
        /* grid-template-columns: 1fr; */
        gap: 0.6rem;
        margin-bottom: 1.2rem;
        max-width: 300px;
    }
    .stat-item {
        padding: 0.6rem;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        max-width: 280px !important; /* Adjusted */
        padding: 0.85rem 1.5rem !important; /* Adjusted */
        font-size: 0.95rem !important; /* Adjusted */
    }
}

/* Fix for resize bugs - ensure consistent styling */
@media (min-width: 769px) {
    .hero-visual-zone,
    .hero-candidate-visual { /* Restore visual zone for desktop */
        display: flex;
        order: 0;
    }

    .hero-card-stack { /* Restore card stack for desktop */
        display: block; 
        position: relative;
        width: 100%;
        max-width: 320px; 
        height: fit-content;
        align-items: initial; /* Reset flex alignment */
        justify-content: initial; /* Reset flex justification */
    }

    .hero-card { /* Restore cards for desktop */
        display: flex;
        position: relative; /* Not absolute */
        width: auto; /* Or original width */
        max-width: none; /* Or original max-width */
        height: auto;
        padding: 1.1rem; /* Restore original padding */
    }

    .hero-card-1, .hero-card-2, .hero-card-3 { 
        margin: 0 !important; /* Reset mobile specific margins if any were added */
    }
    .hero-card-1 {
        transform: translateX(-20px) rotate(-2deg) !important;
        z-index: 3; /* Original desktop z-index */
        margin-bottom: 0.7rem !important; 
    }

    .hero-card-2 { /* Ensure this is after the .middle-card-expanded reset for specificity */
        transform: translateX(10px) rotate(1deg) !important;
        z-index: 2; /* Original desktop z-index */
        margin-top: -1rem !important;
        margin-right: 0 !important; 
    }

    .hero-card-3 {
        transform: translateX(-10px) rotate(-1deg) !important;
        z-index: 1; /* Original desktop z-index */
        margin-top: -1rem !important;
    }
    .hero-card .card-content h3 { 
        font-size: 0.95rem;
        line-height: 1.3; 
        margin-bottom: 0.35rem; /* Restore desktop margin */
    }
    .hero-card .card-content p { 
        font-size: 0.8rem;
        line-height: 1.35; 
    }
}
