* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary: #0B3C5D;
    --secondary: #1D5B8C;
    --accent: #FFB400;
    --light: #F4F4F4;
    --dark: #333333;
}

body {
    line-height: 1.6;
    color: var(--dark);
}
/* esta parte de arriba esta copiada de home.css */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-intro{
    padding-top: 100px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.section-intro p{
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1rem;
    margin-left: 10px;
    margin-right: 10px;
}

.section-intro h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-left: 10px;
    margin-right: 10px;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    margin: 15px 30px;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 20px 15px;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.project-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}