/* Importar fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilidades */
.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navegación */
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 5%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
}



/* Estilos del logo */


.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Ajuste responsive */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }
}


.logo {
    height: 250px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4BC91;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #D4BC91;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

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

.nav-links a.active {
    color: #D4BC91;
}

.nav-links a.active:after {
    width: 100%;
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
}

.slide-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: -1;
    border-radius: 10px;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 188, 145, 0.7);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-arrow:hover {
    background: rgba(212, 188, 145, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

/* Footer */
footer {
    background-color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid #D4BC91;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajusta el tamaño mínimo según sea necesario */
    gap: 1rem;
    margin-bottom: 0.2rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Esto centra verticalmente */
    padding: 4rem 0; /* Esto da espacio arriba y abajo */
}

.footer-logo img {
    width: 300px;
    height: auto;
    margin: 0;
}






.footer-logo p {
    margin: 0; /* Elimina márgenes del párrafoa  */
    padding: 0; /* Elimina padding del párrafo */
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    line-height: 1.2; /* Ajusta el espaciado entre líneas */
}

.footer-logo p i {
    color: #D4BC91;
    width: 25px;
    margin-right: 10px;
}

.footer-section h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.social-media {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-media a {
    color: black;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-media a:hover {
    color: #D4BC91;
    transform: translateY(-3px);
}

.footer-info p {
    margin: 0.3rem 0;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
}

.footer-info p i {
    color: #D4BC91;
    width: 25px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 188, 145, 0.3);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #666;
}

.footer-menu ul li a {
    color: #666; /* Color gris como el resto del footer */
    text-decoration: none; /* Quita el subrayado */
}

.footer-menu ul li a:visited {
    color: #666; /* Mantiene el mismo color incluso después de visitado */
}

.footer-menu ul li a:hover {
    color: #D4BC91; /* El color dorado al pasar el mouse */
}

.footer-menu ul li a,
.footer-menu ul li a:link,
.footer-menu ul li a:visited {
    color: #666 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #D4BC91 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-logo img {
        width: 100%; /* Remueve la restricción de altura */
        height: auto; /* Mantiene la proporción */
    }
}

/* Menú hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .slide-content h2 {
        font-size: 3.5rem;
    }

    .nav-links {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .nav-links a {
        padding: 1rem 0;
        font-size: 1.4rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .slide-content h2 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .prev {
        left: 1rem;
    }

    .next {
        right: 1rem;
    }

    .footer-content {
        text-align: center;
        gap: 2rem;
    }

    .footer-content {
        display: BLOCK;
        
    }

    .footer-section2 {
        display: inline-block;
        width: 49%;;
    }

    .footer-logo {
        align-items: center;
    }

    .social-media {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-info p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* Services Section Styles */
.services-container {
    padding: 6rem 2rem;
    background-color: #fff;
    overflow: hidden;
}

.service-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.service-item {
    display: grid;
    grid-template-columns: 0.2fr 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.service-item:nth-child(even) {
    grid-template-columns: 1.2fr 1fr 0.2fr;
}

.service-content {
    padding-right: 2rem;
    max-width: 500px;
}

.service-content h4 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-number {
    font-size: 8rem;
    font-weight: 200;
    color: #D4BC91;
    line-height: 1;
    opacity: 1;
}

.service-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

/* Línea decorativa */
.service-item::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #B5A285; /* Color beige corporativo */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-grid {
        gap: 6rem;
    }

    .service-content h3 {
        font-size: 2rem;
    }

    .service-number {
        font-size: 6rem;
    }
}

@media (max-width: 968px) {
    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }

    .service-number {
        font-size: 5rem;
        text-align: left;
    }

    .service-content {
        padding-right: 0;
        max-width: 100%;
    }

    .service-image {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        padding: 4rem 1rem;
    }

    .service-grid {
        gap: 4rem;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .service-number {
        font-size: 4rem;
    }
}
/* About Section Styles */
.about-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
}

.about-banner {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: calc(100% + 40px);
    z-index: 1;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtleFloat 10s ease-in-out infinite;
    transform-origin: center;
}

.about-grid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    justify-content: flex-start;
}

.about-item {
    max-width: 480px;
}

.about-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.about-content h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

/* Animaciones */
@keyframes subtleFloat {
    0% {
        transform: scale(1.1) translate(0, 0);
    }
    25% {
        transform: scale(1.1) translate(-5px, 5px);
    }
    50% {
        transform: scale(1.1) translate(0, 10px);
    }
    75% {
        transform: scale(1.1) translate(5px, 5px);
    }
    100% {
        transform: scale(1.1) translate(0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        padding: 40px 20px;
        justify-content: center;
    }
    
    .about-content {
        padding: 24px;
        margin: 0 20px;
    }
    
    .about-content h3 {
        font-size: 1.8rem;
    }
}
/* Projects Section Styles */
.projects-container {
    padding: 100px 40px;
    background-color: #fff;
}

.projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    columns: 4;
    column-gap: 20px;
}

.project-item {
    position: relative;
    width: 100%;
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover Effects */
.project-item:hover .project-image {
    transform: scale(1.05);
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-item:hover .project-title {
    opacity: 1;
}

/* Animaciones con delays escalonados */
.project-item:nth-child(1) { animation-delay: 0.1s; }
.project-item:nth-child(2) { animation-delay: 0.2s; }
.project-item:nth-child(3) { animation-delay: 0.3s; }
.project-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid {
        columns: 3;
    }
}

@media (max-width: 900px) {
    .projects-grid {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        columns: 1;
    }
    
    .projects-container {
        padding: 60px 20px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Contact Styles */
.contact-container {
    padding: 120px 40px;
    background-color: white;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.location-block {
    margin-bottom: 30px;
}

.location-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.highlight {
    color: #D4BC91;
}

.address {
    color: #666;
    line-height: 1.6;
}

.contact-details {
    margin: 30px 0;
}

.phone {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.email-block, .social-block {
    margin: 15px 0;
    color: #666;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #D4BC91;
}

.hours-block {
    margin: 20px 0;
    color: #666;
}

/* Form Styles */
.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #333;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: inherit;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #D4BC91;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.submit-btn:hover {
    background: #c4ac81;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-container {
        padding: 80px 20px;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}
/* Efectos de entrada para la sección de contacto */
.contact-info {
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.contact-form {
    opacity: 0;
    animation: slideInRight 1s ease forwards;
}

.footer-info p,
.offices-header,
.offices-addresses {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* Delay escalonado para cada elemento del texto */
.footer-info p:nth-child(1) { animation-delay: 0.2s; }
.footer-info p:nth-child(2) { animation-delay: 0.3s; }
.footer-info p:nth-child(3) { animation-delay: 0.4s; }
.footer-info p:nth-child(4) { animation-delay: 0.5s; }
.footer-info p:nth-child(5) { animation-delay: 0.6s; }

.offices-header { animation-delay: 0.3s; }
.offices-addresses { animation-delay: 0.4s; }
.social-media { animation-delay: 0.7s; }

/* Animaciones */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aseguramos que el formulario tenga una entrada suave */
.contact-form form {
    opacity: 0;
    transform: translateY(20px);
    animation: formAppear 0.8s ease forwards;
    animation-delay: 0.5s;
}

@keyframes formAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto suave para los inputs del formulario */
.contact-form input,
.contact-form textarea {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.contact-form input:nth-child(1) { animation-delay: 0.6s; }
.contact-form input:nth-child(2) { animation-delay: 0.7s; }
.contact-form input:nth-child(3) { animation-delay: 0.8s; }
.contact-form textarea { animation-delay: 0.9s; }
.contact-form button { animation-delay: 1s; }

/* Estilos del Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 2vh auto; /* Reducido de 5vh a 2vh para dar más espacio */
    padding: 0;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 95vh; /* Aumentado para usar más espacio de la pantalla */
    display: flex;
    flex-direction: column;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #D2B48C; /* Nuevo color arena/beige */
    cursor: pointer;
    z-index: 1010;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Y añade este nuevo estilo para el hover */
.close-modal:hover {
    color: #E8DCC4;
    background: rgba(0, 0, 0, 0.7);
}
.modal-content {
    /* ... tus estilos actuales ... */
    animation: modalFadeIn 0.3s ease-out;
}

/* Agregar esta animación al final de tus estilos del modal */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos del Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-height: 85vh; /* Reducido de 70vh a 60vh */
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: auto;
}

.slider img {
    width: 100%;
    max-height: 85vh; /* Reducido de 70vh a 60vh */
    object-fit: contain;
    flex-shrink: 0;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: rgb(248, 226, 129);
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button:hover {
    background: rgb(228, 204, 151);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.project-info {
    padding: 30px 40px; /* Aumentado el padding */
    overflow-y: auto;
    max-height: 35vh;
    margin: 20px 0; /* Añadido margen arriba y abajo */
    background-color: #fff; /* Aseguramos fondo blanco */
}

/* Ajustamos los espaciados entre elementos de texto */
.project-info .project-title {
    font-size: 24px;
    margin-bottom: 15px; /* Aumentado el espacio después del título */
}

.project-info .project-location {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px; /* Espacio después de la ubicación */
}

.project-info .project-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px; /* Más espacio antes de la descripción */
}

.project-info .project-description {
    line-height: 1.8; /* Aumentado el interlineado */
    color: #333;
    padding-bottom: 20px; /* Espacio al final */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .project-info {
        padding: 20px 25px; /* Padding más pequeño en móviles */
        margin: 15px 0;
    }
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .modal-content {
        margin: 1vh auto;
        max-height: 98vh;
    }

    .slider-container {
        max-height: 50vh;
    }

    .slider img {
        max-height: 50vh;
    }

    .project-info {
        padding: 15px;
        max-height: 40vh;
    }
}