* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2C2C2C;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E1E1E;
    padding: 0 40px;
    height: 120px;
    position: relative;
    z-index: 200;
    width: 100%;
}

.branding a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.branding img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.branding h2 {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
    color: white;
    letter-spacing: 1px;
}

header ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

header ul li a {
    display: flex;
    align-items: center;
    height: 100px;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
    font-size: 15px;
}

nav ul li {
    list-style: none;
    position: relative;
}

nav ul li a:hover {
    text-decoration: none;
    color: white;
}

header ul li a:not(.btn-header)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 0%;
    height: 2px;
    background-color: #C5A46D;
    transition: width 0.3s ease;
}

header ul li a:not(.btn-header):hover::after {
    width: 100%;
}

header ul li a:not(.btn-header):hover {
    color: #C5A46D;
}

.btn-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 45px;
}

.btn-header a {
    font-size: 15px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 769px) {
    nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 900px) and (min-width: 427px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
        padding: 0 20px;
    }

    nav {
        display: flex;
        position: absolute;
        top: 130px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 320px;
        background-color: #1E1E1E;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 100;
        padding-bottom: 128px;
    }

    .menu-toggle {
        display: flex;
    }

    nav.active {
        max-height: 500px;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    nav ul {
        flex-direction: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 10px 0;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        width: 100%;
        font-size: 1.5rem;
        color: #fff;
        text-decoration: none;
        text-align: center;
        transition: background 0.3s;
    }

    nav ul li a:hover {
        background-color: #f0f0f0;
    }
}

@media (max-width: 436px) and (min-width: 320px) {
    .branding img {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        padding: 0 20px;
    }

    nav {
        display: flex;
        position: absolute;
        top: 130px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        width: 320px;
        background-color: #1E1E1E;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 100;
        padding-bottom: 128px;
    }

    .menu-toggle {
        display: flex;
    }

    nav.active {
        max-height: 500px;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    nav ul {
        flex-direction: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 10px 0;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        width: 100%;
        font-size: 1.5rem;
        color: #fff;
        text-decoration: none;
        text-align: center;
        transition: background 0.3s;
    }

    nav ul li a:hover {
        background-color: #f0f0f0;
    }
}





/*### FOOTER ###*/
.col_white_amrc {
    color: #C5A572;
}

footer {
    width: 100%;
    background-color: #2C2C2C;
    min-height: 250px;
    padding: 10px 0 25px 0;
}

.pt2 {
    padding-top: 40px;
    margin-bottom: 20px;
}

footer p {
    font-size: 13px;
    color: #CCC;
    margin-bottom: 8px;
}

.mb10 {
    padding-bottom: 15px;
}

.footer_ul_amrc {
    margin: 0;
    list-style-type: none;
    font-size: 14px;
    padding: 0 0 10px 0;
}

.footer_ul_amrc li {
    padding: 0 0 5px 0;
}

.footer_ul_amrc li a {
    color: #CCC;
    transition: color 0.3s;
}

.footer_ul_amrc li a:hover {
    color: #fff;
    text-decoration: none;
}

.fleft {
    float: left;
}

.padding-right {
    padding-right: 10px;
}

.footer_ul2_amrc {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.footer_ul2_amrc li p {
    display: table;
}

.footer_ul2_amrc li a:hover {
    text-decoration: none;
}

.footer_ul2_amrc li i {
    margin-top: 5px;
}

.bottom_border {
    border-bottom: 1px solid #323f45;
    padding-bottom: 20px;
}

.foote_bottom_ul_amrc {
    list-style-type: none;
    padding: 0;
    display: table;
    margin: 10px auto;
}

.foote_bottom_ul_amrc li {
    display: inline;
}

.foote_bottom_ul_amrc li a {
    color: #999;
    margin: 0 12px;
}

.social_footer_ul {
    display: table;
    margin: 15px auto 0 auto;
    list-style-type: none;
}

.social_footer_ul li {
    padding-left: 20px;
    padding-top: 10px;
    float: left;
}

.social_footer_ul li a {
    color: #CCC;
    border: 1px solid #CCC;
    padding: 8px;
    border-radius: 50%;
}

/* ICONOS DE REDES SOCIALES */
.footer_ul2_amrc li i {
    width: 20px;
    height: 20px;
    text-align: center;
}

/* Colores personalizados */
.footer_ul2_amrc li a i.fa-instagram {
    color: #E1306C;
}
.footer_ul2_amrc li a i.fa-facebook-f {
    color: #1877F2;
}
.footer_ul2_amrc li a i.fa-whatsapp {
    color: #25D366;
}

/* Social icons (si decides usarlas aparte) */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    color: #1C1C1C;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #25D366;
}

/* Footer responsivo */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .footer_ul_amrc,
    .footer_ul2_amrc {
        padding: 0;
    }

    .footer_ul2_amrc li i {
        display: none; /* opcional si se ve apretado */
    }

    .row > div {
        margin-bottom: 25px;
    }
}
