/* Extraido de views/.../footer.php (bloque <style> embebido) */
.contact-section {
    background-color: #f4a32c;
    color: black;
    padding: 3rem 2rem 1rem 2rem ;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1.5rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 220px;
    min-width: 160px;
    flex: 1 1 160px;
    margin: 0 0.5rem;
}
.contact-title {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}
.contact-subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.1rem;
    margin-top: 0.3rem;
}
.contact-data {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.2rem;
    font-weight: normal;
    text-decoration: none;
    display: block;
}
.contact-block {
    margin-bottom: 0.6rem;
}
.contact-block:last-child {
    margin-bottom: 0;
}
.contact-section h2 {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}
.text-contact {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: white;
}
@media (max-width: 1200px) {
    .contact-section {
        gap: 0.7rem;
    }
    .footer-col {
        max-width: 180px;
        min-width: 120px;
    }
}
@media (max-width: 900px) {
    .contact-section {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .footer-col {
        max-width: 100%;
        min-width: 100px;
        flex: 1 1 100px;
    }
}
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }
    .footer-col {
        max-width: 100%;
        min-width: 100px;
        margin: 0 0 1rem 0;
    }
}
.container-page {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}

.btn-custom {
    background-color: black;
    color: white;
    border: none;
}

.btn-custom:hover {
    background-color: #333;
}

.imput-contact {
    border: none;
    border-top-right-radius: 19px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;           
    background-color: rgb(243, 202, 140);
    color: black;
    padding: 13px 20px;
    border: 2px solid rgb(255, 255, 255);
}

.imput-contact::placeholder {
    color: black;
}

.imput-contact-menssage {
    border: none;
    border-top-right-radius: 19px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    background-color: rgb(243, 202, 140);
    color: black;
    padding: 30px 20px;
    border: 2px solid rgb(255, 255, 255);
}

.imput-contact-menssage-button {
    border: none;
    border-top-right-radius: 19px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    background-color: rgb(243, 202, 140);
    padding: 10px 20px;
    background-color: black;
    font-weight: bold;
}

.imput-contact-menssage::placeholder {
    color: black;
}

.imput-contact-menssage-button:hover {
    background-color: #fff;
    color: black;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.phone-number {
    font-size: 0.8rem;
}

.contact-info {
    font-size: 0.8rem;
}

.contact-titles {
    font-size: 0.7rem !important;
}

h2 {
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}

h5 {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}

p {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: -9px;
    right: 14px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 4px 20px;
    color: #f4a32c;
}

#scrollTopBtn:hover {
    color: white;
}

#scrollTopBtn::before {
    font-family: "Font Awesome 5 Free"; /* Asegúrate de cargar FontAwesome */
    font-weight: 900; /* Para la versión sólida */
}

@media (max-width: 991px) {
    .logo-social-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .contact-section .row > section {
        margin-bottom: 2rem;
    }
    .logo-social-section {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}
.logo-social-section a:hover {
    color: #fff !important;
    transition: color 0.2s;
}
