/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 1rem 0;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav a.active {
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}

main {
    padding: 2rem;
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007BFF;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding: 0 10rem;
}

.mvv-item {
    margin-bottom: 2rem;
}

.mvv-item ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: bold;
    color: #007BFF;
}

.metric-label {
    display: block;
    font-size: 1rem;
    color: #555;
}

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

.team-member {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.certification {
    background-color: #f0f8ff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #007BFF;
    color: white;
    margin-top: 2rem;
}

:root {
    --primary: #1a237e;
    --secondary: #4a148c;
    --accent: #00c853;
    --dark: #0a0f3d;
    --light: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-text {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    70% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.dashboard-card {
    perspective: 1000px;
}

.dashboard-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.dashboard-card:hover .dashboard-inner {
    transform: rotateY(15deg);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

.nav-link {
    position: relative;
}

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

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

.active:after {
    width: 100%;
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74,20,140,0.1) 0%, rgba(26,35,126,0.1) 100%);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.globe-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
    box-shadow: 0 0 50px rgba(74,20,140,0.3);
}

.globe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="white" stroke-width="0.5" d="M0,50 Q25,40 50,50 T100,50 M50,0 Q40,25 50,50 T50,100"/></svg>') center/cover;
    opacity: 0.2;
}

.globe-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.country-tooltip {
    position: absolute;
    background-color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 10;
}

.globe-point:hover + .country-tooltip {
    opacity: 1;
}

.mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.open {
    max-height: 1000px;
}

.feature-icon .avatar {
    border-radius: 10px;
    box-shadow: 0px 0px 5px #ccc;
}