/* styles.css */
body {
    font-family: 'Unbounded', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    font-size: 1rem;
}

.hero-section {
    background: url('../images/hero.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 2.5em;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2em;
}

.hero-section .btn-primary {
    background-color: #1e692e;
    border-color: #1e692e;
    font-size: 1em;
    margin: 10px;
}

.hero-section .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    font-size: 1em;
    margin: 10px;
}

.quienes-somos, .ferreteria-industrial, .sucursales, .entrega, .contacto, .visitanos {
    padding: 50px 0;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1e692e;
}

p, ul, li {
    font-size: 1em;
}

.sucursales {
    padding: 50px 0;
    background-color: #ffffff;
}

.sucursal-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sucursal-number {
    font-size: 1.2em;
    font-weight: 700;
    background-color: #e0f7fa;
    color: #1e692e;
    padding: 10px 20px;
    border-radius: 50%;
    margin-right: 20px;
}

.sucursal-details h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #1e692e;
}

.sucursal-details p {
    font-size: 1em;
    color: #212529;
}

.sucursales img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.ferreteria-industrial .row > div {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin: 10px 0;
}

.ferreteria-industrial h3 {
    color: #1e692e;
}

.contacto {
    color: white;
    background: url('../images/contacto-bg.jpg') no-repeat center center;
    background-size: cover;
}

.contacto h2 {
    color: #fff;
}

.contacto .card-body {
    color: #1e692e;
}

.contacto p, .visitanos p {
    margin: 5px 0;
}

.minimarket, .contacto {
    background: url('../images/minimarket-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
}
.minimarket h2 {
    color: rgba(255, 255, 255);
}

.minimarket .minimarket-grid {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
}

.minimarket-item {
    margin: 10px 0;
}

.minimarket-item .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.minimarket-item .card-body {
    padding: 20px;
}

.minimarket h3 {
    color: #1e692e;
}

.visitanos-list {
    padding: 0;
    list-style-type: none;
}

.visitanos-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.visitanos-number {
    font-size: 1.5em;
    font-weight: 700;
    background-color: #e0f7fa;
    color: #1e692e;
    padding: 10px 20px;
    border-radius: 50%;
    margin-right: 20px;
}

.visitanos-details h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #1e692e;
}

.visitanos-details p {
    font-size: 1em;
    color: #212529;
}

.visitanos img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

footer {
    background-color: #f8f9fa;
    padding: 20px 0;
}

footer p {
    margin: 0;
    color: #212529;
    font-size: 1em;
}

footer a {
    color: #1e692e;
    text-decoration: none;
    font-weight: 700;
}

footer a:hover {
    text-decoration: underline;
}

.contacto-item {
    margin-bottom: 20px;
}

.contacto-item .card-body {
    text-align: center;
}

.btn-primary:hover {
    background-color: #155922;
    border-color: #155922;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 100;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1da851;
}

.whatsapp-icon {
    margin-right: 10px;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 500px; /* Tamaño máximo */

    margin-bottom: 20px;
}