* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%; 
}

main {
    display: flex;
    flex-direction: column;
    width: 100%; 
}

/* Carrusel */
#galeria {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#carousel {
    width: 100%;
    height: 100%;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-item {
    height: 100vh;
    width: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos para las flechas de navegación */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0));
}

.carousel-control-next:hover {
    background: linear-gradient(to left, rgba(0,0,0,0.1), rgba(0,0,0,0));
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    padding: 22px;
    border-radius: 0;
    width: 20px;
    height: 20px;
    background-size: 40%;
    position: relative;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:after,
.carousel-control-next-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 1px solid white;
    border-right: 1px solid white;
    transform: translate(-50%, -50%) rotate(225deg);
}

.carousel-control-next-icon:after {
    transform: translate(-50%, -50%) rotate(45deg);
}
/* Carrusel */

/* Header */
#header_wrapper {
    width: 100%;
    margin: auto;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(249, 249, 249, 0.95);
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 80px; 
}

.header_content_wrapper {
    margin: 0 auto;
    width: 80%;
    max-width: 1200px;
    padding: 0; 
    height: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_wrapper {
    display: flex;
    align-items: center;
}

.header_logo {
    max-height: 50px; 
    width: auto;
}

.header_logo_text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px; 
    font-weight: 300;
    letter-spacing: 2px;
    color: #333;
    margin-left: 10px;
}

nav.main_menu {
    display: flex;
    align-items: center;
}

.menu_wrapper {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu_item {
    position: relative;
}

.menu_item a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.menu_item a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #979797;
    transition: width 0.3s ease;
}

.menu_item a:hover {
    color: #979797;
}

.menu_item a:hover:after {
    width: 100%;
}

.menu_item.current a {
    color: #979797;
}

.menu_item.current a:after {
    width: 100%;
}

.mobile_menu_button {
    display: none;
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    #header_wrapper {
        height: 80px;
    }
    
    .mobile_menu_button {
        display: block;
    }
    
    nav.main_menu {
        display: none;
    }
    
    nav.main_menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(249, 249, 249, 0.95);
        border-top: 1px solid #eaeaea;
    }
    
    .menu_wrapper {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .header_content_wrapper {
        padding: 15px 0;
    }
}
/* Header */

/* Footer */
#footer_wrapper {
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 2;
    background-color: #f9f9f9;
    border-top: 1px solid #eaeaea;
}

.footer_content_wrapper {
    margin: 0 auto;
    width: 80%;
    max-width: 1200px;
    padding: 30px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_column {
    width: 100%;
}

.footer_heading {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.footer_heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #979797;
}

.footer_contact_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_contact_list li {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

.footer_contact_list li i {
    width: 20px;
    text-align: center;
    margin-right: 12px;
    color: #979797;
}

.footer_contact_list li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footer_contact_list li a:hover {
    color: #333;
    border-bottom: 1px solid #979797;
}

.footer_bar {
    padding: 0;
    box-sizing: border-box;
    margin: auto;
    width: 100%;
    background: #f9f9f9;
    border-top: 1px solid #eaeaea;
}

.footer_bar_wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#copyright {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #777;
}

.footer_social {
    display: flex;
    gap: 15px;
}

.footer_social a {
    color: #777;
    transition: color 0.3s ease;
}

.footer_social a:hover {
    color: #333;
}

.standard_wrapper {
    width: 100%;
}
/* Footer */

/* Container */
.custom-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5%;
}

.content .text-box {
    width: 50%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titulo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.titulo:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #979797;
}

.content .text-box p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    color: #555;
    margin-bottom: 20px;
}

.content .img-box {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 1s ease;
}

.content .img-box.animate {
    opacity: 1;
    transform: translateX(0);
}

.content .img-box img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.content .img-box img:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
/* Container */
