@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
}

/* === NAVEGACIÓN INFERIOR === */
.nav {
    width: 100%;
    height: 70px;
    background: #969593;
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

@media (min-width: 768px) {
    .nav {
        padding: 0 30px;
    }
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
}

.nav-logo {
    flex-shrink: 1;
    max-width: calc(100% - 50px);
}

.nav-logo img {
    height: 35px;
    width: auto;
    max-width: 100%;
}

@media (min-width: 480px) {
    .nav-logo img {
        height: 45px;
    }
}

@media (min-width: 768px) {
    .nav-logo img {
        height: 59px;
    }
}

/* === MENÚ FULLSCREEN === */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    overflow-y: auto;
}

.fullscreen-menu.open {
    transform: translateX(0);
}

.fullscreen-menu .close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fullscreen-menu .close-btn span {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #969593;
}

.fullscreen-menu .close-btn span:first-child {
    transform: rotate(45deg);
}

.fullscreen-menu .close-btn span:last-child {
    transform: rotate(-45deg);
}

.fullscreen-menu .menu-logo {
    width: 80px;
    height: auto;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .fullscreen-menu .menu-logo {
        width: 120px;
    }
}

.fullscreen-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 20px 0;
}

.fullscreen-menu li {
    margin: 25px 0;
}

@media (min-width: 768px) {
    .fullscreen-menu li {
        margin: 30px 0;
    }
}

.fullscreen-menu a {
    color: #969593;
    text-decoration: none;
    font-size: 28px;
    font-weight: 400;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .fullscreen-menu a {
        font-size: 40px;
    }
}

.fullscreen-menu a:hover {
    color: #B71F33;
}

.fullscreen-menu .menu-divider {
    width: 80%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #969593, transparent);
    margin: 30px auto;
}

.fullscreen-menu .menu-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.fullscreen-menu .menu-social .social-icon {
    background: #969593;
    height: 45px;
    width: 45px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.fullscreen-menu .menu-social .social-icon:hover {
    background: #B71F33;
    transform: translateY(-3px);
}

.fullscreen-menu .menu-social .social-icon i {
    color: #FFFFFF;
    font-size: 22px;
    line-height: 45px;
}

.fullscreen-menu .menu-footer {
    position: absolute;
    bottom: 30px;
    font-size: 14px;
    color: #969593;
    text-align: center;
    width: 100%;
    opacity: 0.7;
}

/* === FULLSCREEN START === */
.fullscreen-start {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    position: relative;
}
.fullscreen-start.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.fullscreen-start img {
    margin-bottom: 80px;
    position: absolute;
    top: 19%;
    animation: fadeInUp 0.8s ease-out;
}
.fullscreen-start h2 {
    font-size: 40px;
    color: #969593;
    letter-spacing: 5%;
    text-indent: 0.2em;
    position: absolute;
    top: 85%;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.fullscreen-start b{
    color: #B71F33;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 767px) {
    .fullscreen-start h2 {
        font-size: 20px;
        top: 80%;
        text-align: center;
        width: 95%;
        text-indent: 0;
    }
}

/* === MAIN CONTAINER === */
.main-container {
    margin-bottom: 70px;
    background: #FFFFFF;
    display: block;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === WHY US SECTION === */
.why-us {
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 80px 20px;
}

.little-letter {
    font-size: 18px;
    text-align: center;
    max-width: 90%;
    color: #969593;
}

@media (min-width: 768px) {
    .little-letter {
        font-size: 24px;
        max-width: 500px;
    }
    .why-us .little-letter:last-of-type {
        max-width: 90%;
    }
}

@media (min-width: 1200px) {
    .why-us .little-letter:last-of-type {
        max-width: 1567px;
    }
}

.title-letter {
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    max-width: 100%;
    line-height: 1.3;
    padding: 0 15px;
    color: #969593;
}

@media (min-width: 768px) {
    .title-letter {
        font-size: 48px;
        letter-spacing: 1.62em;
        text-indent: 1.62em;
    }
}

.items-artefactor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 100%;
    padding: 20px;
}

@media (min-width: 768px) {
    .items-artefactor {
        flex-wrap: nowrap;
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    .items-artefactor {
        gap: 20px;
        width: 1172px;
    }
}

.items-artefactor .item {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .items-artefactor .item {
        flex-shrink: 0;
    }
}

.items-artefactor .item .item-letter,
.items-artefactor .item .item-sign {
    width: 70px;
    height: 75px;
    font-size: 60px;
    text-align: center;
    line-height: 75px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .items-artefactor .item .item-letter,
    .items-artefactor .item .item-sign {
        width: 80px;
        height: 86px;
        font-size: 70px;
        line-height: 86px;
    }
}

@media (min-width: 1200px) {
    .items-artefactor .item .item-letter,
    .items-artefactor .item .item-sign {
        width: 100px;
        height: 106px;
        font-size: 96px;
        line-height: 106px;
    }
}

.items-artefactor .item .item-letter {
    background: #969593;
    color: #ffffff;
}

.items-artefactor .item .item-sign {
    background: #ffffff;
    color: #969593;
}

.items-artefactor .item .item-desc {
    font-size: 12px;
    text-align: center;
    margin-top: 8px;
    max-width: 70px;
    color: #969593;
}

@media (min-width: 768px) {
    .items-artefactor .item .item-desc {
        font-size: 14px;
        max-width: 80px;
    }
}

@media (min-width: 1200px) {
    .items-artefactor .item .item-desc {
        font-size: 18px;
        width: 106px;
    }
}

.button-artefactor {
    width: 174px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #969593;
    color: #969593;
    background-color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-artefactor:hover {
    color: #FFFFFF;
    background: #B71F33;
    border-color: #B71F33;
}

/* === PROJECTS SECTION === */
.projects {
    background: #f5f5f5;
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .projects {
        padding: 100px 40px;
    }
}

@media (min-width: 1200px) {
    .projects {
        padding: 150px;
    }
}

.tittle-2 {
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #969593;
}

@media (min-width: 768px) {
    .tittle-2 {
        font-size: 48px;
    }
}

@media (min-width: 1200px) {
    .tittle-2 {
        font-size: 64px;
    }
}

.subtitle-artefactor {
    font-size: 24px;
    color: #B71F33;
    padding-top: 30px;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .subtitle-artefactor {
        font-size: 36px;
        padding-top: 50px;
    }
}

.mosaic-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    padding: 20px 0;
    background-color: #f5f5f5;
}

@media (min-width: 640px) {
    .mosaic-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .mosaic-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .mosaic-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

.card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    min-height: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .card {
        min-height: 330px;
        padding: 20px;
    }
}

.card:hover {
    transform: translateY(-3px);
}

.card-tall {
    grid-row: span 1;
}

@media (min-width: 768px) {
    .card-tall {
        grid-row: span 2;
        min-height: 580px;
    }
}

.card-fullwidth {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 280px;
    padding: 20px;
}

@media (min-width: 768px) {
    .card-fullwidth {
        min-height: 330px;
        padding: 25px;
    }
}

@media (min-width: 1200px) {
    .card-fullwidth {
        min-height: 330px;
        padding: 25px;
    }
}

.card-fullwidth .card-content {
    max-width: 100%;
    margin: 0;
}

.card-fullwidth .card-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.card-fullwidth .card-content p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 15px 0;
}
.card-fullwidth .card-content .full-p-sub{
    font-size: 14px;
}

@media (min-width: 768px) {
    .card-fullwidth .card-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .card-fullwidth .card-content p {
        font-size: 14px;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }
    .card-fullwidth .card-content .full-p-sub{
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .card-fullwidth .card-content h2 {
        font-size: 35px;
        margin-bottom: 12px;
    }
    .card-fullwidth .card-content p {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }
    .card-fullwidth .card-content .full-p-sub{
        font-size: 20px;
    }
}

.card-fullwidth .btn-more {
    height: 32px;
    font-size: 12px;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .card-fullwidth .btn-more {
        height: 36px;
        font-size: 14px;
        padding: 0 15px;
    }
}

@media (min-width: 1200px) {
    .card-fullwidth .btn-more {
        height: 40px;
        font-size: 16px;
    }
}

.card-content {
    color: #ffffff;
    width: 100%;
}

.card-content h2 {
    font-size: 20px;
    margin: 0 0 8px 0;
    color: #ffffff;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .card-content h2 {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .card-content h2 {
        font-size: 35px;
    }
}

.card-content p {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: #ffffff;
}

@media (min-width: 768px) {
    .card-content p {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .card-content p {
        font-size: 20px;
    }
}

.btn-more {
    height: 36px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    background-color: #ffffff;
    color: #969593;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #B71F33;
    transition: all 0.2s;
}

@media (min-width: 768px) {
    .btn-more {
        height: 40px;
        font-size: 16px;
    }
}

.btn-more:hover {
    background-color: #B71F33;
    color: #ffffff;
}

/* === CUSTOMERS SECTION === */
.customers {
    padding: 60px 20px;
    background: #ffffff;
}

@media (min-width: 768px) {
    .customers {
        padding: 100px 40px;
    }
}

@media (min-width: 1200px) {
    .customers {
        padding: 150px;
    }
}

.brands-flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
}

.brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-item img[alt="GMM Woodwork"] { max-width: 100px; }
.brand-item img[alt="Siegwerk"] { max-width: 200px; }
.brand-item img[alt="Hausscape"] { max-width: 250px; }
.brand-item img[alt="Fortum Construction"] { max-width: 180px; }
.brand-item img[alt="RM Contractors"] { max-width: 120px; }
.brand-item img[alt="Arista"] { max-width: 80px; }
.brand-item img[alt="Claro Colombia"] { max-width: 80px; }
.brand-item img[alt="Famoc Depanel"] { max-width: 180px; }
.brand-item img[alt="Doit! Accesorios para baño"] { max-width: 120px; }
.brand-item img[alt="Markes"] { max-width: 90px; }
.brand-item img[alt="CMX Cinemas"] { max-width: 160px; }
.brand-item img[alt="Mineralia"] { max-width: 200px; }
.brand-item img[alt="Grafton Furniture"] { max-width: 180px; }

@media (min-width: 768px) {
    .brand-item img[alt="GMM Woodwork"] { max-width: 170px; }
    .brand-item img[alt="Siegwerk"] { max-width: 350px; }
    .brand-item img[alt="Hausscape"] { max-width: 450px; }
    .brand-item img[alt="Fortum Construction"] { max-width: 300px; }
    .brand-item img[alt="RM Contractors"] { max-width: 192px; }
    .brand-item img[alt="Arista"] { max-width: 140px; }
    .brand-item img[alt="Claro Colombia"] { max-width: 134px; }
    .brand-item img[alt="Famoc Depanel"] { max-width: 352px; }
    .brand-item img[alt="Doit! Accesorios para baño"] { max-width: 186px; }
    .brand-item img[alt="Markes"] { max-width: 144px; }
    .brand-item img[alt="CMX Cinemas"] { max-width: 260px; }
    .brand-item img[alt="Mineralia"] { max-width: 427px; }
    .brand-item img[alt="Grafton Furniture"] { max-width: 311px; }
}

/* === CONTACT SECTION === */
.contact-us {
    background: #f5f5f5;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-us {
        padding: 100px 40px;
        flex-direction: row;
    }
}

@media (min-width: 1200px) {
    .contact-us {
        padding: 150px;
    }
}

.contact-part {
    flex: 1;
}

.contact-part .tittle-2 {
    color: #969593;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.contact-part .tittle-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #B71F33;
    transition: width 0.3s ease;
}

.contact-part .tittle-2:hover::after {
    width: 100%;
}

.contact-form {
    background-color: #ffffff;
    padding: 30px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px;
    }
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

.lbl-info {
    color: #969593;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.input-group:focus-within .lbl-info {
    color: #B71F33;
}

.input-text,
.txt-area_msg {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 0;
    font-size: 15px;
    font-family: "Courier Prime", monospace;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.input-text:focus,
.txt-area_msg:focus {
    outline: none;
    border-color: #B71F33;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(183, 31, 51, 0.1);
}

.input-text:hover,
.txt-area_msg:hover {
    border-color: #969593;
}

.btn-send {
    width: 100%;
    background: #969593;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-send::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-send:hover {
    background: #B71F33;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 31, 51, 0.3);
}

.btn-send:hover::before {
    left: 100%;
}

.btn-send:active {
    transform: translateY(0);
}

.btn-send.success {
    background: #28a745;
}

.input-text:required:invalid,
.txt-area_msg:required:invalid {
    border-color: #e0e0e0;
}

.btn-send.loading {
    background: #969593;
    cursor: wait;
    opacity: 0.7;
}

.btn-send.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-message {
    color: #B71F33;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.input-group.error .input-text,
.input-group.error .txt-area_msg {
    border-color: #B71F33;
    background-color: rgba(183, 31, 51, 0.05);
}

.input-group.error .error-message {
    display: block;
}

.success-message {
    background: #28a745;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.info img {
    width: 120px;
    height: auto;
}

@media (min-width: 768px) {
    .info img {
        width: 180px;
    }
}

@media (min-width: 1200px) {
    .info img {
        width: 221px;
    }
}

.text-info {
    font-size: 14px;
    margin: 5px 0;
    width: 100%;
    color: #969593;
}

@media (min-width: 768px) {
    .text-info {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .text-info {
        font-size: 20px;
    }
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons .icon {
    background: #969593;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.social-icons .icon:hover {
    background: #B71F33;
}

.social-icons .icon i {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 22px;
    line-height: 40px;
}

/* === ABOUT SECTION === */
.about {
    min-height: calc(100vh - 70px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0;
    overflow: hidden;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.about-hero-image {
    width: 100vw;
    margin: 0;
    display: block;
    padding: auto 150px 0 150px;
    min-height: 40vh;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('img/image-about.png');
    background-position: center 10%;
}
.about-hero-image h1 {
    color: #ffffff;
    font-size: 36px;
    letter-spacing: 10%;
    text-indent: 0.3em;
    line-height: 1.2;
    margin-left: 20px;
    position: absolute;
    bottom: 5%;
}
@media (min-width: 768px) {
    .about-hero-image h1 {
        font-size: 48px;
        margin-left: 100px;
    }
}

@media (min-width: 1200px) {
    .about-hero-image h1 {
        font-size: 64px;
        margin-left: 150px;
    }
}
.about-content{
    padding: 60px 20px;
}
@media (min-width: 768px) {
    .about-content {
        padding: 100px 40px;
    }
}

@media (min-width: 1200px) {
    .about-content {
        padding: 60px 150px 0 150px;
    }
}
.about-content .about-item {
    margin-bottom: 90px
}
.about-content .about-item h2 {
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #B71F33;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .about-content .about-item h2 {
        font-size: 36px;

    }
}

@media (min-width: 1200px) {
    .about-content .about-item h2 {
        font-size: 48px;

    }
}
.about-content .about-item p {
    font-size: 16px;
    color: #969593;
    margin-bottom: 40px;
}
.about-content .about-item h3{
    font-size: 22px;
    color: #B71F33;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .about-content .about-item h3 {
        font-size: 30px;

    }
    .about-content .about-item p{
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .about-content .about-item h3 {
        font-size: 36px;

    }
    .about-content .about-item p{
        font-size: 20px;
    }
}
.about-content .about-item ul{
    margin-left: 25px;
}
.our-team {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    margin-bottom: 70px;
}
@media (min-width: 768px) {
    .our-team {
        padding: 100px 40px;
    }
}

@media (min-width: 1200px) {
    .our-team {
        padding:140px 150px 80px 150px;
    }
}

.our-team .team-members {
    display: flex;
    flex-direction: column;

}
.our-team .team-member{
    position: relative;
}
.our-team .team-member img{
    position: absolute;
    top: 10%;
    width: 150px;
    height: 150px;
    border: 1px solid #969593;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
    .our-team .team-member img {
        left: 50%;
        transform: translateX(-50%);
        height: 200px;
        width: 200px;
        top: 0;
    }
}
.our-team .team-member .member-info{
    margin-left: 152px;
    padding: 20px;
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .our-team .team-member .member-info {
        margin-left: 0;
        padding-top: 230px;
        margin-bottom: 30px;
    }
}
.our-team .team-member .member-info h2{
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #969593;
    margin-bottom: 20px;
}
.our-team .team-member .member-info p {
    font-size: 16px;
    color: #969593;
    margin-bottom: 10px;
}
.our-team .team-member .member-info h3{
    font-size: 22px;
    color: #B71F33;
    margin-bottom: 15px;
}
@media (min-width: 768px) {
    .our-team .team-member .member-info h2 {
        font-size: 36px;

    }
    .our-team .team-member .member-info h3{
        font-size: 30px;
    }
    .our-team .team-member .member-info p{
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .our-team .team-member .member-info h2 {
        font-size: 48px;

    }
    .our-team .team-member .member-info h3{
        font-size: 36px;
    }
    .our-team .team-member .member-info p{
        font-size: 20px;
    }
}

/* === CARRUSEL MODAL === */
.carousel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.85);
    z-index: 2500;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.carousel-modal.active {
    display: flex;
}

.carousel-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.carousel-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 28px;
    color: #969593;
    transition: color 0.3s ease;
}

.carousel-modal-close:hover {
    color: #B71F33;
}

.carousel-slider {
    display: flex;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.carousel-slides-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    height: 100%;
    padding: 120px 150px;
    gap: 40px;
}

.carousel-slide-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    min-width: 0;
}

.carousel-slide-info .slide-number {
    font-size: 14px;
    color: #B71F33;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0;
}

.carousel-slide-info h2 {
    font-size: 64px;
    color: #969593;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

.carousel-slide-info .slide-subtitle {
    font-size: 36px;
    color: #B71F33;
    margin-bottom: 20px;
}

.carousel-slide-info .slide-description {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 90%;
}

.carousel-slide-images {
    flex: 1;
    display: grid;
    gap: 16px;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.carousel-slide-images .img-item {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
    min-height: 80px;
    width: 100%;
    height: 100%;
}

.carousel-slide-images .img-item:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .carousel-slide-images {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        min-height: 150px;
        max-height: 300px;
        overflow-y: auto;
    }
    .carousel-slide-images .img-item {
        min-height: 100px;
        height: 150px;
    }
}

@media (max-width: 640px) {
    .carousel-slide-images {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px;
        min-height: 120px;
        max-height: 250px;
    }
    .carousel-slide-images .img-item {
        min-height: 80px;
        height: 110px;
    }
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-arrow:hover {
    background: #B71F33;
    border-color: #B71F33;
}

.carousel-arrow:hover i {
    color: #ffffff;
}

.carousel-arrow i {
    font-size: 22px;
    color: #969593;
    transition: color 0.3s ease;
}

.carousel-arrow-left {
    left: 15px;
}

.carousel-arrow-right {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 18px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .dot.active {
    background: #B71F33;
    width: 30px;
    border-radius: 5px;
}

.carousel-indicators .dot:hover {
    background: #969593;
}

@media (max-width: 1024px) {
    .carousel-slide {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        overflow-y: auto;
    }
    .carousel-slide-info {
        padding-right: 0;
    }
    .carousel-slide-info h2 {
        font-size: 26px;
    }
    .carousel-slide-info .slide-description {
        max-width: 100%;
        font-size: 14px;
    }
    .carousel-slide-images {
        flex: 0 0 auto;
        height: 280px;
    }
    .carousel-modal-content {
        height: 90vh;
        max-height: none;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    .carousel-arrow i {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .carousel-slide {
        padding: 18px;
        gap: 15px;
    }
    .carousel-slide-info h2 {
        font-size: 20px;
    }
    .carousel-slide-info .slide-subtitle {
        font-size: 15px;
    }
    .carousel-slide-info .slide-description {
        font-size: 13px;
    }
    .carousel-slide-images {
        height: 200px;
        gap: 8px;
    }
    .carousel-arrow {
        width: 34px;
        height: 34px;
    }
    .carousel-arrow-left {
        left: 8px;
    }
    .carousel-arrow-right {
        right: 8px;
    }
    .carousel-modal-close {
        top: 12px;
        right: 16px;
        font-size: 22px;
    }
}

/* === HOURS MODAL === */
.hours {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    z-index: 2400;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.hours.active {
    display: flex;
}

.hours-close-btn {
    position: fixed;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2450;
    font-size: 28px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.hours-close-btn:hover {
    color: #B71F33;
}

.hours-image {
    width: 100%;
    min-height: 40vh;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('img/3horas.png');
    background-position: center 10%;
    flex-shrink: 0;
}

.hours-image .completed-title {
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 0.1em;
    text-indent: 0.3em;
    line-height: 1.2;
    margin-left: 20px;
    position: absolute;
    bottom: 5%;
}

.hours-image .title-block {
    display: none;
}

@media (min-width: 768px) {
    .hours-image .completed-title {
        display: none;
    }
    .hours-image .title-block {
        display: block;
        position: absolute;
        bottom: 10%;
        left: 5%;
    }
    .hours-image .title-block h1 {
        color: #ffffff;
        font-size: 36px;
        letter-spacing: 0.1em;
        text-indent: 0.3em;
        line-height: 1.2;
        margin: 0;
    }
    .hours-image .title-block h1:first-child {
        margin-bottom: 5px;
    }
}

@media (min-width: 1200px) {
    .hours-image .title-block h1 {
        font-size: 48px;
    }
}

.hours-content {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    flex: 1;
}

@media (min-width: 768px) {
    .hours-content {
        flex-direction: row;
        padding: 60px 40px;
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .hours-content {
        padding: 80px 150px;
        gap: 60px;
    }
}

.hours-description {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15%;
}

@media (min-width: 768px) {
    .hours-description {
        flex: 0 0 65%;
    }
}

.hours-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    text-align: justify;
}

@media (min-width: 768px) {
    .hours-description p {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .hours-description p {
        font-size: 20px;
    }
}

.hours-description .btn-download {
    width: 200px;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #969593;
    color: #969593;
    background-color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Courier Prime", monospace;
}

.hours-description .btn-download:hover {
    color: #FFFFFF;
    background: #B71F33;
    border-color: #B71F33;
}

.hours-mosaic {
    flex: 0 0 35%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(17, 1fr);
    gap: 10px;
    min-height: 500px;
    height: 100%;
}

.hours-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hours-mosaic img:hover {
    transform: scale(1.03);
}

.hours-mosaic .img-1 {
    grid-column: 1 / 7;
    grid-row: 1 / 6;
}

.hours-mosaic .img-2 {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
}

.hours-mosaic .img-3 {
    grid-column: 7 / 13;
    grid-row: 3 / 5;
}

.hours-mosaic .img-4 {
    grid-column: 1 / 7;
    grid-row: 6 / 8;
}

.hours-mosaic .img-5 {
    grid-column: 7 / 13;
    grid-row: 5 / 7;
}

.hours-mosaic .img-6 {
    grid-column: 1 / 7;
    grid-row: 8 / 10;
}

.hours-mosaic .img-7 {
    grid-column: 7 / 13;
    grid-row: 7 / 10;
}

.hours-mosaic .img-8 {
    grid-column: 1 / 13;
    grid-row: 10 / 13;
}

@media (max-width: 1024px) {
    .hours-mosaic {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(17, 1fr);
        min-height: 400px;
    }
    .hours-mosaic .img-1 {
        grid-column: 1 / 4;
        grid-row: 1 / 6;
    }
    .hours-mosaic .img-2 {
        grid-column: 4 / 7;
        grid-row: 1 / 3;
    }
    .hours-mosaic .img-3 {
        grid-column: 4 / 7;
        grid-row: 3 / 5;
    }
    .hours-mosaic .img-4 {
        grid-column: 1 / 4;
        grid-row: 6 / 8;
    }
    .hours-mosaic .img-5 {
        grid-column: 4 / 7;
        grid-row: 5 / 7;
    }
    .hours-mosaic .img-6 {
        grid-column: 1 / 4;
        grid-row: 8 / 10;
    }
    .hours-mosaic .img-7 {
        grid-column: 4 / 7;
        grid-row: 7 / 10;
    }
    .hours-mosaic .img-8 {
        grid-column: 1 / 7;
        grid-row: 10 / 13;
    }
}

@media (max-width: 640px) {
    .hours-mosaic {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(20, 1fr);
        min-height: 350px;
        gap: 6px;
    }
    .hours-mosaic .img-1 {
        grid-column: 1 / 5;
        grid-row: 1 / 6;
    }
    .hours-mosaic .img-2 {
        grid-column: 1 / 3;
        grid-row: 6 / 8;
    }
    .hours-mosaic .img-3 {
        grid-column: 3 / 5;
        grid-row: 6 / 8;
    }
    .hours-mosaic .img-4 {
        grid-column: 1 / 3;
        grid-row: 8 / 10;
    }
    .hours-mosaic .img-5 {
        grid-column: 3 / 5;
        grid-row: 8 / 10;
    }
    .hours-mosaic .img-6 {
        grid-column: 1 / 3;
        grid-row: 10 / 12;
    }
    .hours-mosaic .img-7 {
        grid-column: 3 / 5;
        grid-row: 10 / 12;
    }
    .hours-mosaic .img-8 {
        grid-column: 1 / 5;
        grid-row: 12 / 15;
    }
}

@media (max-width: 480px) {
    .hours-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(22, 1fr);
        min-height: 300px;
        gap: 4px;
    }
    .hours-mosaic .img-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 6;
    }
    .hours-mosaic .img-2 {
        grid-column: 1 / 2;
        grid-row: 6 / 8;
    }
    .hours-mosaic .img-3 {
        grid-column: 2 / 3;
        grid-row: 6 / 8;
    }
    .hours-mosaic .img-4 {
        grid-column: 1 / 2;
        grid-row: 8 / 10;
    }
    .hours-mosaic .img-5 {
        grid-column: 2 / 3;
        grid-row: 8 / 10;
    }
    .hours-mosaic .img-6 {
        grid-column: 1 / 2;
        grid-row: 10 / 12;
    }
    .hours-mosaic .img-7 {
        grid-column: 2 / 3;
        grid-row: 10 / 12;
    }
    .hours-mosaic .img-8 {
        grid-column: 1 / 3;
        grid-row: 12 / 15;
    }
}

/* === SELECTOR DE IDIOMAS === */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.language-selector .flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.language-selector .flag-icon.active {
    opacity: 1;
    border-color: #B71F33;
    transform: scale(1.1);
}

.language-selector .flag-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.language-selector .lang-divider {
    width: 1px;
    height: 20px;
    background: #d0d0d0;
}

@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
    }
    .language-selector .flag-icon {
        width: 20px;
        height: 14px;
    }
}