/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcf9f6;
    color: #1e1e1e;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2a1f14;
    white-space: nowrap;
}

.logo a {
    text-decoration: none;
    color: #2a1f14;
}

.logo span {
    color: #c49a6c;
}

/* ===== CAMPO DE BÚSQUEDA ===== */
.search-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    background: #f5f1eb;
    border-radius: 40px;
    padding: 0.2rem 0.2rem 0.2rem 1.2rem;
    border: 1px solid #e0d9d0;
    transition: border 0.2s;
}

.search-box:focus-within {
    border-color: #c49a6c;
    background: #fff;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    color: #2a1f14;
}

.search-box input::placeholder {
    color: #9a8a7a;
}

.search-box button {
    background: #c49a6c;
    border: none;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-box button:hover {
    background: #a8855a;
}

/* ===== MENÚ DE CATEGORÍAS ===== */
.nav-categorias {
    background: #f8f5f0;
    border-top: 1px solid #e8e3dc;
    border-bottom: 1px solid #e8e3dc;
    padding: 0.6rem 0;
}

.nav-categorias ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 0.5rem;
    padding: 0;
}

.nav-categorias ul li a {
    display: inline-block;
    padding: 0.3rem 1rem;
    color: #3d3327;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-categorias ul li a:hover {
    background: #c49a6c;
    color: #fff;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #f3ede7 0%, #e8dfd6 100%);
    border-radius: 24px;
    margin: 2rem 0 2.5rem;
    padding: 3rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 550px;
    z-index: 2;
}

.hero-content .tag {
    display: inline-block;
    background: #c49a6c;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    margin-bottom: 0.8rem;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #2a1f14;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    color: #5a4a3a;
    font-size: 1.1rem;
    margin: 0.8rem 0 1.5rem;
}

.hero-content .btn-hero {
    display: inline-block;
    padding: 0.7rem 2.2rem;
    background: #2a1f14;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-content .btn-hero:hover {
    background: #c49a6c;
}

.hero-image {
    font-size: 6rem;
    opacity: 0.3;
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem;
        text-align: center;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-image {
        display: none;
    }
}

/* ===== PRODUCTOS GRID ===== */
.seccion-titulo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2a1f14;
    margin: 2rem 0 1.5rem;
    letter-spacing: -0.5px;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.producto-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f0ede8;
}

.producto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.producto-card .img-placeholder {
    background: #eae5de;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7a6a;
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
}

.producto-card .img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producto-card .info {
    padding: 0.8rem 1rem 1rem;
}

.producto-card .info .categoria-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #c49a6c;
    font-weight: 600;
}

.producto-card .info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a1f14;
    margin: 0.2rem 0;
}

.producto-card .info .precio {
    font-weight: 700;
    color: #1e1e1e;
    margin-top: 0.3rem;
    font-size: 1rem;
}

.producto-card .info .precio small {
    font-weight: 400;
    color: #7a6a5a;
    font-size: 0.75rem;
}

.btn-ver {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 1.2rem;
    background: #2a1f14;
    color: #fff;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-ver:hover {
    background: #c49a6c;
}

/* ===== DETALLE PRODUCTO ===== */
.producto-detalle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2.5rem 0;
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0ede8;
}

.galeria {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.galeria .principal {
    background: #eae5de;
    border-radius: 16px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7a6a;
    font-weight: 500;
    font-size: 1.1rem;
    overflow: hidden;
}

.galeria .principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeria .miniaturas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.galeria .miniaturas .miniatura {
    background: #eae5de;
    border-radius: 12px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7a6a;
    font-size: 0.8rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
    overflow: hidden;
}

.galeria .miniaturas .miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeria .miniaturas .miniatura:hover {
    border-color: #c49a6c;
}

.info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #5a3e2b;
    letter-spacing: -0.5px;
    margin-bottom: 0.3rem;
}

.info .categoria-badge {
    display: inline-block;
    background: #f0ede8;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c49a6c;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.info .precio-grande {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: #c49a6c !important;
    margin: 0.8rem 0 0.5rem;
}

.info .precio-grande small {
    font-weight: 400;
    color: #7a6a5a;
    font-size: 1rem;
}

.info .descripcion {
    color: #3d3d3d;
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
}

.info .especificaciones {
    background: #f9f7f4;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.info .especificaciones h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7a6a5a;
    margin-bottom: 0.5rem;
}

.info .especificaciones .texto-libre {
    font-size: 0.95rem;
    color: #2a1f14;
    white-space: pre-wrap;
}

.btn-regresar {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.8rem;
    background: #2a1f14;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.btn-regresar:hover {
    background: #c49a6c;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ===== FOOTER ===== */
footer {
    background: #fff;
    border-top: 1px solid #f0ede8;
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
    color: #7a6a5a;
    font-size: 0.9rem;
}

footer a {
    color: #c49a6c;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    .header-top {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .search-box {
        width: 100%;
    }
    .nav-categorias ul {
        gap: 0.2rem;
    }
    .nav-categorias ul li a {
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .producto-detalle {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
        bottom: 18px;
        right: 18px;
    }
}

/* ===== DETALLE PRODUCTO ===== */
.producto-detalle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2.5rem 0;
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0ede8;
}

.galeria {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.galeria .principal {
    background: #eae5de;
    border-radius: 16px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7a6a;
    font-weight: 500;
    font-size: 1.1rem;
    overflow: hidden;
}

.galeria .principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeria .miniaturas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.galeria .miniaturas .miniatura {
    background: #eae5de;
    border-radius: 12px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7a6a;
    font-size: 0.8rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
    overflow: hidden;
}

.galeria .miniaturas .miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeria .miniaturas .miniatura:hover {
    border-color: #c49a6c;
}

.info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2a1f14;
    letter-spacing: -0.5px;
    margin-bottom: 0.3rem;
}

.info .categoria-badge {
    display: inline-block;
    background: #f0ede8;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c49a6c;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.info .precio-grande {
    font-size: 2rem;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0.8rem 0 0.5rem;
}

.info .precio-grande small {
    font-weight: 400;
    color: #7a6a5a;
    font-size: 1rem;
}

.info .descripcion {
    color: #3d3d3d;
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
}

.info .especificaciones {
    background: #f9f7f4;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.info .especificaciones h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7a6a5a;
    margin-bottom: 0.5rem;
}

.info .especificaciones .texto-libre {
    font-size: 0.95rem;
    color: #2a1f14;
    white-space: pre-wrap;
}

.btn-regresar {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.8rem;
    background: #2a1f14;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.btn-regresar:hover {
    background: #c49a6c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .producto-detalle {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

/* ===== SECCIÓN CHOCOLATES ===== */
.seccion-chocolates {
    margin: 3rem 0;
    background: #D2B48C;
    border-radius: 24px;
    padding: 2rem;
}

.chocolates-contenido {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.chocolates-texto {
    flex: 0 0 30%;
}

.chocolates-texto h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a1f14;
    margin-bottom: 0.5rem;
}

.chocolates-texto .subtitulo {
    font-size: 1.1rem;
    color: #7a6a5a;
    line-height: 1.6;
}

.chocolates-productos {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .chocolates-contenido {
        flex-direction: column;
    }
    .chocolates-texto {
        flex: 1;
        text-align: center;
    }
    .chocolates-productos {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

/* ===== PRODUCTO DEL MES (diseño elegante) ===== */
.producto-mes {
    margin: 3rem 0;
    padding: 2rem 0; /* sin fondo, transparente */
    background: transparent;
}

.producto-mes-contenido {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.producto-mes-imagen {
    flex: 0 0 50%;
    max-width: 50%;
    border-radius: 16px;
    overflow: hidden;
    background: transparent; /* sin fondo */
}

.producto-mes-imagen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.producto-mes-info {
    flex: 1;
    text-align: left;
    padding: 0 1rem;
}

.producto-mes-info .categoria-tag {
    display: inline-block;
    background: #c49a6c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    margin-bottom: 0.8rem;
}

.producto-mes-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a1f14;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.producto-mes-info p {
    color: #5a4a3a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.producto-mes-info .precio {
    font-size: 2rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 1.5rem;
}

.producto-mes-info .btn-ver {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: #2a1f14;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.producto-mes-info .btn-ver:hover {
    background: #c49a6c;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .producto-mes-contenido {
        flex-direction: column;
        text-align: center;
    }
    .producto-mes-imagen {
        flex: 1;
        max-width: 100%;
    }
    .producto-mes-info {
        text-align: center;
        padding: 0;
    }
    .producto-mes-info h3 {
        font-size: 1.8rem;
    }
    .producto-mes-info .precio {
        font-size: 1.5rem;
    }
}

/* ===== SECCIÓN TIENDA FÍSICA ===== */
.seccion-tienda {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0ede8;
}

.tienda-info h2 {
    font-size: 1.8rem;
    color: #2a1f14;
    margin-bottom: 1rem;
}

.tienda-info p {
    color: #5a4a3a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.tienda-info p strong {
    color: #2a1f14;
}

.tienda-mapa iframe {
    border-radius: 16px;
    width: 100%;
    height: 300px;
}

@media (max-width: 768px) {
    .seccion-tienda {
        grid-template-columns: 1fr;
    }
}

/* ===== BANNER HORIZONTAL CON HIPERVÍNCULO ===== */
.banner-horizontal {
    margin: 3rem 0 2rem;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a1f14 0%, #5a3e2b 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.banner-horizontal:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.banner-horizontal a {
    text-decoration: none;
    color: #fff;
    display: block;
}

.banner-contenido {
    padding: 3rem 2rem;
    text-align: center;
}

.banner-contenido h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.banner-contenido p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.btn-banner {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: #c49a6c;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-banner:hover {
    background: #a8855a;
}

@media (max-width: 640px) {
    .banner-contenido h2 {
        font-size: 1.6rem;
    }
    .banner-contenido p {
        font-size: 1rem;
    }
}

/* ===== ESTILOS PARA LA PAGINACIÓN ===== */
.paginacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2.5rem 0 1rem;
    flex-wrap: wrap;
}

.btn-pagina {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #2a1f14;
    border: 1px solid #e0d9d0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
}

.btn-pagina:hover {
    background: #c49a6c;
    color: #fff;
    border-color: #c49a6c;
}

.btn-pagina.active {
    background: #2a1f14;
    color: #fff;
    border-color: #2a1f14;
    cursor: default;
}

.btn-pagina.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-pagina.disabled:hover {
    background: #fff;
    color: #2a1f14;
    border-color: #e0d9d0;
}

/* ===== BOTÓN WHATSAPP ===== */
.btn-whatsapp {
    display: inline-block;
    margin-top: 1rem;
    margin-left: 0.5rem;
    padding: 0.5rem 1.8rem;
    background: #25d366;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: scale(1.02);
}

/* ===== SECCIÓN SOBRE NOSOTROS ===== */
.seccion-sobre-nosotros {
    background: transparent;
    padding: 2rem 0;
    margin: 1rem 0;
}

.sobre-nosotros-contenido {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
}

.sobre-nosotros-texto {
    flex: 1;
    padding: 0.5rem;
}

.sobre-nosotros-texto h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2a1f14;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.sobre-nosotros-texto h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c49a6c;
    margin-top: 0.5rem;
    border-radius: 2px;
}

.sobre-nosotros-texto p {
    color: #3d3327;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.sobre-nosotros-texto p:last-child {
    margin-bottom: 0;
}

.sobre-nosotros-imagen {
    flex: 1;
    max-width: 50%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sobre-nosotros-imagen img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sobre-nosotros-imagen img:hover {
    transform: scale(1.01);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .sobre-nosotros-contenido {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .sobre-nosotros-texto h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .sobre-nosotros-texto h2::after {
        margin: 0.5rem auto 0;
    }
    
    .sobre-nosotros-texto p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .sobre-nosotros-imagen {
        max-width: 100%;
    }
}

/* ===== PÁGINA DE POLÍTICAS ===== */
.pagina-politicas {
    padding: 1rem 0 3rem;
}

.politicas-container {
    max-width: 900px;
    margin: 0 auto;
}

.politicas-container .seccion-titulo {
    text-align: center;
    margin-bottom: 2rem;
}

.politicas-content {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0ede8;
}

.politica-seccion {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0ede8;
}

.politica-seccion:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.politica-seccion h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a1f14;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.politica-seccion h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #c49a6c;
    margin-top: 0.4rem;
    border-radius: 2px;
}

.politica-seccion p {
    color: #3d3327;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.politica-seccion p:last-child {
    margin-bottom: 0;
}

.politica-seccion a {
    color: #c49a6c;
    text-decoration: none;
    font-weight: 500;
}

.politica-seccion a:hover {
    text-decoration: underline;
}

.politica-seccion strong {
    color: #2a1f14;
}

.fecha-actualizacion {
    margin-top: 1.5rem !important;
    padding-top: 1rem;
    border-top: 1px solid #f0ede8;
    color: #7a6a5a !important;
    font-size: 0.9rem !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .politicas-content {
        padding: 1.5rem;
    }
    
    .politica-seccion h2 {
        font-size: 1.2rem;
    }
    
    .politica-seccion p {
        font-size: 0.95rem;
    }
}

/* ===== LISTAS EN PÁGINAS DE POLÍTICAS ===== */
.politica-seccion ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem 1.5rem;
}

.politica-seccion ul li {
    color: #3d3327;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.5rem;
}

.politica-seccion ul li::before {
    content: '•';
    color: #c49a6c;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.politica-seccion ul li strong {
    color: #2a1f14;
}

.politica-seccion h3 {
    font-size: 1.1rem;
    color: #2a1f14;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .politica-seccion ul {
        margin-left: 0.5rem;
    }
    .politica-seccion ul li {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
}