:root {
    /* Brand Colors */
    --color-primary: #0A2342;
    /* Deep Navy - Trust */
    --color-primary-light: #153A66;
    --color-secondary: #F46036;
    /* Vibrant Orange - Construction/Action */
    --color-secondary-dark: #D3451E;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;

    /* Typography */
    --font-family-base: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    color: var(--color-gray-800);
    background-color: var(--color-white);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

/* Header Styles */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--spacing-sm) 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    /* Adjust based on logo file */
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--color-secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        /* Hide for now, will toggle with JS */
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Utilities Extended */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-800);
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-800);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract visual decoration */
.visual-circle {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    opacity: 0.1;
    position: absolute;
}

/* Features Section */
.features {
    background-color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--color-gray-50);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-gray-100);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
    border-color: var(--color-secondary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    padding: 10px;
    background: rgba(244, 96, 54, 0.1);
    border-radius: var(--radius-md);
}

.feature-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--color-gray-800);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero-visual {
        display: none;
        /* Hide visual on mobile for simplicity or adjust */
    }
}

/* Benefits Section */
.benefits {
    background-color: var(--color-gray-50);
}

.benefits-container {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-text {
    text-align: center;
}

.benefits-list {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: left;
}

.benefits-list li {
    display: flex;
    gap: var(--spacing-md);
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    align-items: flex-start;
}

.benefits-list li:hover {
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefits-list strong {
    color: var(--color-primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.footer-col h4 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-gray-200);
    font-size: 0.95rem;
    transition: all 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-400);
    font-size: 0.9rem;
}

/* Team Section */
/* Team Section - Premium Redesign */
.team {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 350px;
    /* Responsive flex basis */
    display: flex;
    flex-direction: column;
    border: none;
    /* Removed border for cleaner look */
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-photo {
    width: 220px;
    height: 220px;
    margin: var(--spacing-md) auto 0;
    /* Center horizontally, add top margin */
    border-radius: 50%;
    border: 5px solid var(--color-white);
    /* White ring effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: var(--color-gray-200);
    z-index: 10;
}

.team-photo::after {
    display: none;
    /* Remove gradient overlay */
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Align top to avoid cutting heads */
    transition: transform 0.5s ease;
    border-radius: 50%;
    /* Ensure img is also round */
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

/* Specific adjustment for Eduardo */
.photo-eduardo img {
    object-position: center 15%;
    /* Lowers the face slightly to avoid top crop */
    object-fit: cover;
    /* Fill the circle again */
    /* Removed background-color as it's not needed for cover */
}

/* Card Content Area */
.team-card-content {
    /* New wrapper class we'll need to add in HTML maybe, or style standard elements */
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-card h3 {
    color: var(--color-primary);
    margin-bottom: 4px;
    font-size: 1.5rem;
    font-weight: 700;
}

.team-role {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio-list {
    color: var(--color-gray-800);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-bio-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.team-bio-list li::before {
    content: "✓";
    /* Checkmark looks more professional than bullet */
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 0.9em;
}

.team-social {
    margin-top: -20px;
    /* Pull it up to overlap/be close to photo */
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    /* Center horizontally */
    gap: 12px;
    z-index: 20;
    /* Ensure on top */
    position: relative;
}

.team-social a {
    color: var(--color-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    /* Much larger */
    height: 60px;
    /* Much larger */
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* Instagram Gradient */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--color-white);
    /* Thicker border */
}

.team-social a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.team-social a svg {
    width: 32px;
    /* Larger icon */
    height: 32px;
    /* Larger icon */
}