.about-section {
    background: linear-gradient(rgba(15, 23, 43, 0), rgb(255 255 255 / 61%)), url(https://tejasypasteleros.com/Assets/tiendacambio/img/sobrenosotrosportada.png) center / cover no-repeat;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #ff6a00;
    color: #fff;
    padding: 15px 25px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 18px;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
}

.metrics-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
    position: relative;
}

.metric-item i {
    font-size: 45px;
    color: #ff6a00;
    margin-bottom: 8px;
    display: block;
}

.metric-item h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #111;
}

.metric-item span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.metric-divider {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, #ff6a00, transparent);
}

/* Responsive */
@media (max-width: 768px) {

    .metrics-modern {
        flex-direction: column;
        gap: 25px;
    }

    .metric-divider {
        display: none;
    }
}

/* PRODUCTOS HOME */
/* Contenedor cuadrado perfecto */
.block2-pic {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* 🔥 Siempre cuadrado */
    overflow: hidden;
    border-radius: 14px;
    background: #f8f8f8;
    /* fondo elegante por si la imagen no llena */
}

/* Imagen adaptada */
.block2-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* recorta sin deformar */
    transition: transform 0.4s ease;
    border-radius: 14px;
}

/* Hover elegante */
.block2-pic:hover img {
    transform: scale(1.05);
}

/* CONTENEDOR */
.product-modern {
    width: 100%;
}

/* NOMBRE */
.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 4px;
    display: block;
    transition: 0.3s ease;
}

.product-name:hover {
    color: #ff6a00;
}

/* CATEGORÍA */
.product-category {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

/* RATING */
.product-rating {
    font-size: 13px;
    margin-bottom: 8px;
}

.product-rating .fa {
    color: #ddd;
}

.product-rating .active {
    color: #ff6a00;
}

.rating-value {
    font-size: 12px;
    color: #888;
    margin-left: 6px;
}

/* STOCK */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.stock-status.in {
    background: rgba(37, 211, 102, 0.12);
    color: #1f9d55;
}

.stock-status.out {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* fin */

/* beneficios */
.corporate-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
    cursor: default;
}

.corporate-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    filter: brightness(1.05);
}

.corporate-card .icon-wrapper img {
    width: 80px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.corporate-card:hover .icon-wrapper img {
    transform: scale(1.2);
}

.corporate-card h4 {
    font-size: 1.5rem;
    color: #222;
}

.corporate-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Hover Glow sutil */
.corporate-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 112, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.8);
    pointer-events: none;
    border-radius: 50%;
}

.corporate-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .corporate-card {
        padding: 3rem 2rem;
    }

    .corporate-card h4 {
        font-size: 1.3rem;
    }
}

/* fin */
.contact-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
}

.contact-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px 12px 50px;
    border-radius: 0.75rem;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    color: #333;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    background: #f9f9f9;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f87000;
    box-shadow: 0 0 10px rgba(248, 112, 0, 0.2);
    background: #fff;
}

/* Checkmark */
.checkmark {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-input:valid~.checkmark,
.form-textarea:valid~.checkmark {
    opacity: 1;
}

/* Botón */
.btn-submit {
    background-color: #f87000;
    color: #fff;
    padding: 12px 0;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background-color: #e66e00;
    transform: translateY(-3px);
}

/* Imagen lateral */
.contact-image {
    height: 100%;
    min-height: 400px;
    border-radius: 1rem;
}

.form-check-label a {
    color: #f87000;
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check-input:checked {
    border-color: #f87000;
    background-color: #f87000;
}