/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --primary-dark: #000000;
    --secondary-color: #666666;
    --accent-color: #224b62;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-dark: #1a1a1a;
    --border-color: #e5e5e5;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 2px 8px 0 rgb(0 0 0 / 0.1);
    --shadow-lg: 0 4px 16px 0 rgb(0 0 0 / 0.15);
    --shadow-xl: 0 8px 32px 0 rgb(0 0 0 / 0.2);
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    --gradient-bg: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

body {
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    background: url('assets/background.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero buttons override */
.hero .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.hero .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.hero .btn-secondary {
    color: white;
    border-color: white;
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-visualization {
    position: relative;
    width: 300px;
    height: 300px;
}

.chart-container {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
    height: 150px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.chart-bar {
    width: 20px;
    height: var(--height);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px 4px 0 0;
    animation: grow 2s ease-in-out;
}

@keyframes grow {
    from { height: 0; }
    to { height: var(--height); }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: white;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 10%;
    right: 20%;
    animation-delay: 0.5s;
}

.floating-icons i:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.floating-icons i:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.mission-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.mission p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 300;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    border-radius: 0;
    background: white;
    border: none;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Section Headers with Background */
.section-header.with-background {
    background: url('assets/background.jpg') center/cover no-repeat;
    position: relative;
    padding: 6rem 2rem;
    margin-bottom: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.section-header.with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.section-header.with-background > * {
    position: relative;
    z-index: 2;
}

.section-header.with-background h2 {
    color: white;
}

.section-header.with-background p {
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 0 2rem;
}

.team-card {
    background: white;
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
}

.team-card.leadership {
    border: 2px solid var(--primary-color);
    background: white;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 150px;
    height: 200px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.team-avatar {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.profile-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.profile-highlights li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.profile-highlights li::before {
    content: '▸';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
    top: 0.1rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Approach Section */
.approach {
    padding: 6rem 0;
    background: white;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.integration-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    flex-wrap: nowrap;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.circle:hover {
    transform: scale(1.05);
}

.circle i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.valor {
    background: var(--accent-color);
    width: 140px;
    height: 140px;
}

.arrow-with-text {
    position: relative;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.arrow-with-text:hover {
    transform: scale(1.05);
}

.arrow-left {
    background: var(--primary-color);
    clip-path: polygon(0% 50%, 20% 0%, 100% 0%, 100% 100%, 20% 100%);
}

.arrow-right {
    background: var(--primary-color);
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
}

.arrow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.arrow-content i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.arrow-content span {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.approach-details {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.approach-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.approach-item:hover {
    box-shadow: var(--shadow-md);
}

.approach-icon {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 1.75rem;
}

.approach-text h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.approach-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-card {
    background: white;
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.project-card:hover {
    box-shadow: var(--shadow-md);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.project-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.project-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.project-status.planning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Results Section */
.results {
    padding: 0 0 6rem 0;
    background: white;
}

.results-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 0 2rem;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.metric-card:hover {
    box-shadow: var(--shadow-md);
}

.metric-icon {
    width: 70px;
    height: 70px;
    border-radius: 0;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.metric-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.metric-description {
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.success-stories h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.story-card {
    padding: 2.5rem;
    background: white;
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.story-card:hover {
    box-shadow: var(--shadow-md);
}

.story-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.story-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.sector {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Values Section */
.values {
    padding: 0 0 6rem 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 0 2rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 1.75rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--primary-color);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-text h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-actions .btn {
    justify-content: center;
}

.contact-actions .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.contact-actions .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.contact-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--bg-dark);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-left h3 {
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 1.25rem;
}

.footer-left p {
    opacity: 0.8;
    font-weight: 300;
}

.footer-right p {
    opacity: 0.8;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 10rem 0 4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .approach-content {
        gap: 2rem;
    }
    
    .approach-details {
        flex-direction: column;
        gap: 2rem;
    }
    
    .approach-item {
        max-width: none;
        min-width: auto;
    }
    
    .integration-diagram {
        gap: 1rem;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    
    .circle {
        width: 80px;
        height: 80px;
        font-size: 0.65rem;
    }
    
    .circle i {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .valor {
        width: 90px;
        height: 90px;
    }
    
    .arrow-with-text {
        width: 120px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .arrow-content {
        padding: 0 8px;
    }
    
    .arrow-content i {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .arrow-content span {
        font-size: 0.65rem;
        line-height: 1;
    }
    

    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .project-metrics {
        justify-content: center;
    }
    
    .results-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .mission h2 {
        font-size: 2.25rem;
    }
    
    .contact-text h2 {
        font-size: 2.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .team-grid,
    .projects-grid,
    .values-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Extra small screens - keep horizontal but even smaller */
    .integration-diagram {
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .circle {
        width: 60px;
        height: 60px;
        font-size: 0.55rem;
    }
    
    .circle i {
        font-size: 0.9rem;
    }
    
    .valor {
        width: 70px;
        height: 70px;
    }
    
    .arrow-with-text {
        width: 90px;
        height: 40px;
    }
    
    .arrow-content i {
        font-size: 0.9rem;
    }
    
    .arrow-content span {
        font-size: 0.55rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.team-card,
.project-card,
.value-card,
.story-card,
.metric-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .team-card:nth-child(2) { animation-delay: 0.1s; }
    .team-card:nth-child(3) { animation-delay: 0.2s; }
    .team-card:nth-child(4) { animation-delay: 0.3s; }
    
    .project-card:nth-child(2) { animation-delay: 0.1s; }
    .project-card:nth-child(3) { animation-delay: 0.2s; }
    
    .value-card:nth-child(2) { animation-delay: 0.1s; }
    .value-card:nth-child(3) { animation-delay: 0.2s; }
    .value-card:nth-child(4) { animation-delay: 0.3s; }
} 