body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #f8f9fa;
}

.mocha-home-bg {
    background-image: url('https://ik.imagekit.io/nasxdmcdn2/hile/frutilla_hile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 56px);
}

.hero-section {
    padding: 80px 0 40px;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    color: #FFFFFF;
    text-shadow:
        0 0 4px #000,
        0 0 8px #000,
        0 0 14px rgba(0, 0, 0, 0.95),
        0 0 22px rgba(0, 0, 0, 0.85),
        0 0 32px rgba(0, 0, 0, 0.75),
        0 0 42px rgba(0, 0, 0, 0.6);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    color: #FFFFFF;
    text-shadow:
        0 0 4px #000,
        0 0 8px #000,
        0 0 14px rgba(0, 0, 0, 0.95),
        0 0 22px rgba(0, 0, 0, 0.85),
        0 0 32px rgba(0, 0, 0, 0.75),
        0 0 42px rgba(0, 0, 0, 0.6);
}

.features-section {
    padding: 40px 0;
}

.card-title {
    font-weight: bold;
}

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

/* Estilo de los enlaces de la barra de navegación */
.nav-link {
    color: rgb(0, 0, 0) !important;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #E5007D; /* Color rosado al pasar el mouse */
    text-decoration: none;
}

/* Estilo del botón "Pedidos Online" */
.navbar-nav .btn {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Ajuste del espaciado entre los enlaces */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: bold;
    margin-right: 20px; /* Espaciado entre los elementos */
}


/* Añadir borde negro a las tarjetas */
.features-section .card {
    margin-bottom: 30px;
    border: 2px solid black; /* Borde negro de 2 píxeles */
    border-radius: 15px; /* Mantener esquinas redondeadas */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mantener el efecto hover */
.features-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Añadir sombra */
}

/* Ajustar el espaciado interno */
.card-body {
    padding: 30px;
}

/* Ajustar el tamaño del título */
.card-title {
    font-weight: bold;
    font-size: 1.5rem; /* Un tamaño de fuente más grande */
    color: #333333;
}

/* Ajustar el tamaño del texto */
.card-text {
    font-size: 1.125rem; /* Texto un poco más grande */
    color: #666666;
}

.card-title {
    font-family: 'Montserrat', sans-serif; /* Usa una fuente moderna */
    color: #E5007D; /* Color rosado vibrante para hacer destacar el título */
}

.card-text {
    font-family: 'Open Sans', sans-serif;
    color: #333; /* Color más oscuro para mejor legibilidad */
}
@media (max-width: 768px) {
    .features-section .col-lg-4 {
        margin-bottom: 20px;
    }
}

/* #region footer */
.social-link {
    margin: 0 8px;
    color: #333;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff; /* Cambia a un color de hover */
}

footer p {
    font-size: 20px;
    color: #666;
}

footer svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.footer-dev-title {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin-bottom: 0;
}

.footer-social-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.footer-social-col--mocha {
    text-align: left;
}

.footer-social-col--dev {
    text-align: right;
}

.footer-dev-social .social-link:hover {
    color: #E5007D;
}

/* O solo a un elemento específico */
footer p.footer-text,
footer p.footer-follow {
    color: #000;
    font-weight: 700;
}

.footer-text {
    font-family: 'Itim', cursive;
}
/* #endregion */

/* ===== Responsive global Mocha (desktop / tablet / mobile) ===== */
html,
body {
    overflow-x: hidden;
}

.navbar-brand img {
    max-width: 100px;
    height: auto;
}

.mocha-display-title,
.display-1 {
    word-wrap: break-word;
}

/* Tablet */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #dee2e6;
    }

    .navbar-nav {
        align-items: center;
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 0.6rem 1rem;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .btn-pedidos,
    .navbar-nav .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto 0;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .mocha-display-title,
    .display-1 {
        font-size: 2.75rem !important;
    }

    footer p {
        font-size: 18px;
    }

    .footer-dev-title {
        font-size: 18px;
    }

    .footer-social-row {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .features-section .col-lg-4,
    .features-section .col-md-6 {
        margin-bottom: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .mocha-home-bg .hero-section {
        padding: 56px 0 36px;
    }

    .mocha-home-bg .features-section .col-md-6 {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .mocha-home-bg {
        min-height: auto;
    }

    .mocha-home-bg .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        padding: 48px 0 32px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 0.65rem 1.5rem;
    }

    .features-section {
        padding: 32px 0;
    }

    .card-body {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-text {
        font-size: 1rem;
    }

    .mocha-display-title,
    .display-1 {
        font-size: 2rem !important;
        line-height: 1.15;
    }

    footer p {
        font-size: 16px;
    }

    .footer-dev-title {
        font-size: 16px;
    }

    .footer-social-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-social-col--mocha,
    .footer-social-col--dev {
        text-align: center;
        width: 100%;
    }

    .footer-follow,
    .footer-dev-title {
        word-break: break-word;
    }

    .social-link {
        margin: 0 6px;
    }

    .navbar-brand img {
        max-width: 80px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .mocha-display-title,
    .display-1 {
        font-size: 1.65rem !important;
    }
}

/* ===== Mocha: responsive compartido (inicio, sucursales, promos, nosotros, trabajar, pedidos) ===== */
.mocha-sucursales-wrap,
.mocha-promos-wrap,
.mocha-nosotros-wrap,
.mocha-trabajar-wrap,
.mocha-pedidos-wrap {
    overflow-x: clip;
}

.mocha-sucursales-wrap .container,
.mocha-promos-wrap .container,
.mocha-nosotros-wrap .container,
.mocha-trabajar-wrap .container,
.mocha-pedidos-wrap .container,
.mocha-trabajar-accordion.container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}

.mocha-sucursales-block .container.py-5,
.mocha-pedidos-wrap > .container.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 991.98px) {
    .mocha-sucursales-block .container.py-5,
    .mocha-pedidos-wrap > .container.py-5 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .mocha-promos-wrap {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .mocha-nosotros-wrap {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .mocha-trabajar-wrap {
        padding-top: 2rem;
    }

    .mocha-trabajar-accordion {
        padding-bottom: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .mocha-sucursales-block .container.py-5,
    .mocha-pedidos-wrap > .container.py-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .mocha-promos-wrap {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    .mocha-nosotros-wrap {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    .mocha-trabajar-accordion {
        padding-bottom: 2rem !important;
    }

    .mocha-contact-form,
    .mocha-sucursales-block--contact form,
    .mocha-sucursales-block--contact .mocha-contact-form {
        padding: 1.25rem !important;
    }

    .mocha-cv-modal .modal-dialog {
        margin: 0.65rem;
        max-width: calc(100% - 1.3rem);
    }

    .mocha-cv-modal .modal-body {
        padding: 1.25rem;
    }

    .mocha-aviso-success--card {
        padding: 1.5rem 1.25rem !important;
    }

    .mocha-trabajar-wrap .accordion-button {
        font-size: 0.95rem;
        padding: 0.85rem 1rem;
    }

    .mocha-trabajar-wrap .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .mocha-sucursales-block .container.py-5,
    .mocha-pedidos-wrap > .container.py-5 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/* Títulos de página premium — escalado unificado */
.mocha-sucursales-wrap .page-title h1,
.mocha-promos-wrap .page-title h1,
.mocha-trabajar-intro h2 {
    font-size: clamp(1.65rem, 4.5vw, 3.25rem);
}

@media (max-width: 767.98px) {
    .mocha-promos-wrap .page-title p {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Cards e imágenes en grillas Mocha */
.mocha-promos-wrap .features-section .row,
.mocha-sucursales-block--stores .row,
.mocha-home-bg .features-section .row {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

@media (max-width: 767.98px) {
    .mocha-promos-wrap .features-section .card-title {
        font-size: 1.15rem;
    }

    .mocha-promos-wrap .features-section .card-text {
        font-size: 0.925rem;
    }
}

/* Iframes de mapas */
.mocha-sucursales-block--stores iframe {
    display: block;
    width: 100%;
    min-height: 200px;
    border: 1px solid #dedede;
    border-radius: 0 0 10px 10px;
}

@media (min-width: 768px) {
    .mocha-sucursales-block--stores iframe {
        min-height: 220px;
    }
}

@media (min-width: 992px) {
    .mocha-sucursales-block--stores iframe {
        min-height: 250px;
    }
}
