/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white {
    background-color: white;
    color: black;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-black {
    background-color: black;
    color: white;
}

.btn-black:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.btn-outline {
    background-color: transparent;
    color: black;
    border: 1px solid black;
}

.btn-outline:hover {
    background-color: black;
    color: white;
}

.arrow-right {
    margin-left: 0.5rem;
}

.center-button {
    text-align: center;
    margin-top: 3rem;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1001;
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: white;
    transition: opacity 0.3s ease;
}

.desktop-nav a:hover {
    opacity: 0.8;
}

.menu-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon, .menu-icon:before, .menu-icon:after {
    background-color: white;
    width: 100%;
    height: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon:before, .menu-icon:after {
    content: '';
    left: 0;
}

.menu-icon:before {
    top: -8px;
}

.menu-icon:after {
    bottom: -8px;
}

.menu-active .menu-icon {
    background-color: transparent;
}

.menu-active .menu-icon:before {
    top: 0;
    transform: rotate(45deg);
}

.menu-active .menu-icon:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Menú Móvil */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    color: white;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
    opacity: 0.8;
}

/* Sección Hero */
.hero {
    height: 100vh;
    background-image: url('floor-plan-1857175_1920.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Sección Sobre el Estudio */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
}

.about-image {
    height: 100%;
    min-height: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sección Proyectos */
.projects {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    cursor: pointer;
}

.project-image {
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: #666;
}


/* Sección CTA de Contacto */
.contact-cta {
    padding: 5rem 0;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
    font-size: 1.125rem;
}

/* Pie de Página */
/* Pie de Página */
.footer {
    background-color: black;
    color: white;
    padding: 1rem 0; /* Reducir el padding */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Reducir el espacio entre columnas */
}

.footer-column h3 {
    font-size: 1.1rem; /* Reducir el tamaño de la fuente */
    margin-bottom: 0.75rem;
}

.footer-column h4 {
    font-size: 1rem; /* Reducir el tamaño de la fuente */
    margin-bottom: 0.75rem;
}

.footer-column p, .footer-column address {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-style: normal;
    font-size: 0.9rem; /* Reducir el tamaño de la fuente */
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    font-size: 0.9rem; /* Reducir el tamaño de la fuente */
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem; /* Reducir el margen inferior */
}

.newsletter-form {
    display: flex;
    margin-top: 0.5rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background-color: white;
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 1.5rem; /* Reducir el margen superior */
    padding-top: 1.5rem; /* Reducir el padding superior */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center; /* Centrar el texto */
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem; /* Reducir el tamaño de la fuente */
    width: 100%; /* Asegurar que ocupe todo el ancho */
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    flex-direction: column; /* Alinear el contenido en columna */
}

/* Media Queries */
@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
    
    .desktop-nav {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .publications-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.proyecto-info p {
    text-align: justify;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* Centrar el contenedor */
    padding: 0 20px;
}