﻿/* Cards section */
.section-cards {
    padding: 3rem 2rem;
    background: #111; /* slightly lighter than bg for separation */
}

.service-card {
    background: var(--fsw-light);
    color: #1c1c1c;
    border-radius: var(--fsw-radius);
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    border: 1px solid rgba(168,168,168,0.12);
}

/* CTA strip */
.fsw-cta-strip {
    padding: 2.5rem 2rem;
    background: linear-gradient(90deg, rgba(28,28,30,1), rgba(36,36,38,1));
    border-radius: 12px;
    margin: 2rem;
}

/* Footer */
.fsw-footer {
    background: #0e0e0e;
    color: #bdbdbd;
}

/* --------------------------------------------
   Botón flotante WhatsApp - Forza Special Weldings
-------------------------------------------- */
.fsw-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .fsw-whatsapp:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .fsw-whatsapp svg {
        width: 32px;
        height: 32px;
        fill: white;
    }


/* Responsive */
@media (max-width: 991px) {
    .fsw-hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

        .fsw-hero .hero-image {
            height: 300px;
        }

    .service-card {
        margin-bottom: 1rem;
    }
}

/* --------------------------------------------
   Estilos para formulario de agendamiento
-------------------------------------------- */
.fsw-form-card {
    background: var(--fsw-light);
    color: #1c1c1e;
    border-radius: var(--fsw-radius);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    border: 1px solid rgba(168,168,168,0.15);
}

    .fsw-form-card label {
        font-weight: 600;
        font-family: var(--fsw-font-body);
        color: #333;
    }

    .fsw-form-card .form-control,
    .fsw-form-card .form-select {
        border-radius: var(--fsw-radius);
        border: 1px solid rgba(0,0,0,0.1);
        padding: .65rem;
    }

        .fsw-form-card .form-control:focus,
        .fsw-form-card .form-select:focus {
            box-shadow: 0 0 0 0.2rem rgba(230,57,70,0.25);
            border-color: var(--fsw-red);
        }

    .fsw-form-card textarea {
        resize: none;
    }

/* Animación suave de confirmación */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fsw-form-card svg,
.fsw-form-card h3,
.fsw-form-card p {
    animation: fadeUp 0.6s ease-in-out;
}

/* --------------------------------------------
   Panel administrativo Forza
-------------------------------------------- */
.fsw-dashboard {
    background: #121212;
    color: var(--fsw-light);
    min-height: 90vh;
}

.fsw-sidebar {
    background: #1c1c1e;
    border-radius: var(--fsw-radius);
    box-shadow: inset 0 0 12px rgba(0,0,0,0.4);
    min-height: 100%;
}

    .fsw-sidebar ul li {
        margin-bottom: .8rem;
    }

        .fsw-sidebar ul li a {
            color: var(--fsw-metal);
            text-decoration: none;
            font-weight: 500;
            transition: 0.2s;
            display: block;
            padding: .4rem 0;
        }

            .fsw-sidebar ul li a:hover,
            .fsw-sidebar ul li a.active {
                color: var(--fsw-red);
            }

.fsw-admin-content {
    background: #181818;
    border-radius: var(--fsw-radius);
    box-shadow: 0 0 20px rgba(0,0,0,0.45);
    color: var(--fsw-light);
}

.fsw-table {
    border-collapse: separate;
    border-spacing: 0 6px;
}

    .fsw-table tbody tr {
        background: #202020;
        border-radius: var(--fsw-radius);
        overflow: hidden;
    }

    .fsw-table td,
    .fsw-table th {
        border: none;
        vertical-align: middle;
    }

    .fsw-table tbody tr:hover {
        background: #2a2a2a;
    }

    .fsw-table .badge {
        font-size: .8rem;
        padding: .4em .7em;
    }

.btn-outline-light:hover {
    background: var(--fsw-light);
    color: #000;
}

/* --------------------------------------------
   Detalle de solicitud - Panel Forza
-------------------------------------------- */
.fsw-detail-card {
    background: #202020;
    border-radius: var(--fsw-radius);
    color: var(--fsw-light);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.5);
}

    .fsw-detail-card h6 {
        letter-spacing: 0.05em;
    }

    .fsw-detail-card p {
        color: #ddd;
    }

    .fsw-detail-card .badge {
        font-size: 0.85rem;
        padding: 0.4em 0.7em;
    }

.btn-success {
    background: #28a745;
    border: none;
}

.btn-outline-danger:hover {
    background: #E63946;
    color: white;
}

.btn-outline-light:hover {
    background: var(--fsw-light);
    color: #000;
}

/* --------------------------------------------
   Módulo PQR Interno - Panel Forza
-------------------------------------------- */
.fsw-modal {
    background: #1c1c1e;
    color: var(--fsw-light);
    border-radius: var(--fsw-radius);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

    .fsw-modal .form-label {
        font-weight: 600;
        color: var(--fsw-metal);
    }

    .fsw-modal .form-control,
    .fsw-modal .form-select {
        background: #2a2a2a;
        color: var(--fsw-light);
        border: 1px solid rgba(255,255,255,0.1);
    }

        .fsw-modal .form-control:focus,
        .fsw-modal .form-select:focus {
            border-color: var(--fsw-red);
            box-shadow: 0 0 0 0.2rem rgba(230,57,70,0.25);
        }

.modal-header,
.modal-footer {
    border-color: rgba(255,255,255,0.1);
}

.modal-title {
    font-family: var(--fsw-font-heading);
}

/* --------------------------------------------
   Testimonios - Panel Forza
-------------------------------------------- */
.fsw-testimonial-card {
    background: #1c1c1e;
    border-radius: var(--fsw-radius);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--fsw-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .fsw-testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    }

    .fsw-testimonial-card img {
        border: 2px solid var(--fsw-red);
    }

    .fsw-testimonial-card p {
        font-size: 0.9rem;
    }

.btn-outline-danger:hover {
    background: var(--fsw-red);
    color: white;
}


/* --------------------------------------------
   Testimonios públicos - Forza Special Weldings
-------------------------------------------- */
.fsw-testimonial-public {
    background: #1c1c1e;
    border-radius: var(--fsw-radius);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--fsw-light);
    box-shadow: 0 6px 16px rgba(0,0,0,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 220px;
}

    .fsw-testimonial-public:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    }

    .fsw-testimonial-public img {
        border: 2px solid var(--fsw-red);
    }

    .fsw-testimonial-public p {
        font-size: 0.9rem;
        color: #ccc;
    }


/* --------------------------------------------
   Página de Contacto - Forza Special Weldings
-------------------------------------------- */
.fsw-contact-info {
    background: #1c1c1e;
    color: var(--fsw-light);
    border-radius: var(--fsw-radius);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

    .fsw-contact-info h5 {
        font-family: var(--fsw-font-heading);
        font-weight: 600;
    }

    .fsw-contact-info li {
        color: #ddd;
        font-size: 0.95rem;
    }

.fsw-map iframe {
    filter: grayscale(100%) contrast(1.1);
}


/* --------------------------------------------
   Sección TikTok - Forza Special Weldings
-------------------------------------------- */
.fsw-tiktok-card {
    background: #1c1c1e;
    border-radius: var(--fsw-radius);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

    .fsw-tiktok-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    }

    .fsw-tiktok-card section {
        font-size: 0.9rem;
        color: var(--fsw-light);
        text-align: center;
        padding: 1rem;
    }

    .fsw-tiktok-card .tiktok-embed {
        margin: 0 auto;
    }


@media (max-width: 768px) {
    .fsw-tiktok-card {
        min-height: 380px;
    }
}

/* --------------------------------------------
   Cotización Automática - Forza Special Weldings
-------------------------------------------- */
.fsw-quote-form {
    background: #1c1c1e;
    border-radius: var(--fsw-radius);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--fsw-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

    .fsw-quote-form h4 {
        font-family: var(--fsw-font-heading);
        font-weight: 600;
        color: var(--fsw-metal);
    }

    .fsw-quote-form .form-label {
        font-weight: 600;
        color: var(--fsw-metal);
    }

    .fsw-quote-form .form-control,
    .fsw-quote-form .form-select {
        background: #2a2a2a;
        border: 1px solid rgba(255,255,255,0.1);
        color: var(--fsw-light);
    }

        .fsw-quote-form .form-control:focus,
        .fsw-quote-form .form-select:focus {
            border-color: var(--fsw-red);
            box-shadow: 0 0 0 0.2rem rgba(230,57,70,0.25);
        }


/* --------------------------------------------
   Resultado de Cotización - Forza Special Weldings
-------------------------------------------- */
.fsw-result-card {
    background: #1c1c1e;
    border-radius: var(--fsw-radius);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--fsw-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
    text-align: center;
}

.fsw-summary p {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: #ddd;
}

.fsw-estimate-box {
    background: #2a2a2a;
    border-radius: var(--fsw-radius);
    padding: 1.5rem;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
}

    .fsw-estimate-box h2 {
        color: var(--fsw-red);
        font-weight: 700;
        letter-spacing: 1px;
    }

    .fsw-estimate-box small {
        display: block;
        margin-top: 0.5rem;
        color: #aaa;
    }

/* --------------------------------------------
   Forza Special Weldings - Card Rediseño
-------------------------------------------- */

.fsw-service-card {
    background: linear-gradient(180deg, #1a1a1d 0%, #0f0f10 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
    color: #d1d1d1;
    cursor: pointer;
}

    .fsw-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.6);
        border-color: #e63946;
    }

/* Imagen superior */
.fsw-service-image {
    position: relative;
    overflow: hidden;
    background: #111;
}

    .fsw-service-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.4s ease, filter 0.4s ease;
        filter: grayscale(20%) brightness(1.1);
    }

.fsw-service-card:hover .fsw-service-image img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1.3);
}

/* Contenido */
.fsw-service-content {
    padding: 1.5rem;
}

    .fsw-service-content h5 {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }

    .fsw-service-content p {
        color: #aaa;
        font-size: 0.9rem;
        line-height: 1.4;
    }

/* Pequeño borde decorativo */
.fsw-service-card::after {
    content: "";
    display: block;
    width: 40%;
    height: 3px;
    margin: 0.5rem auto 0;
    background: #e63946;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fsw-service-card:hover::after {
    opacity: 1;
}



/* --------------------------------------------
   Página Nosotros - Forza Special Weldings
-------------------------------------------- */
.fsw-about-img img {
    border-radius: var(--fsw-radius);
    transition: transform 0.3s ease;
}

.fsw-about-img:hover img {
    transform: scale(1.03);
}

.fsw-values h5 {
    font-weight: 600;
    color: var(--fsw-red);
}

.fsw-values p {
    font-size: 0.9rem;
    color: #ccc;
}

.fsw-responsable-card {
    background: #1c1c1e;
    border-radius: var(--fsw-radius);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
    color: var(--fsw-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .fsw-responsable-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    }

/* --------------------------------------------
   Footer - Forza Special Weldings
-------------------------------------------- */
.fsw-footer {
    background: #0f0f10;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--fsw-light);
    font-family: 'Poppins', sans-serif;
}

.fsw-footer-logo {
    font-weight: 700;
    color: var(--fsw-light);
    letter-spacing: 1px;
}

    .fsw-footer-logo span {
        color: var(--fsw-red);
    }

.fsw-footer-links li {
    margin-bottom: 0.4rem;
}

.fsw-footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

    .fsw-footer-links a:hover {
        color: var(--fsw-red);
    }

.fsw-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1c1c1e;
    color: var(--fsw-light);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

    .fsw-social:hover {
        background: var(--fsw-red);
        color: white;
        transform: translateY(-3px);
    }

.fsw-footer-divider {
    border-color: rgba(255,255,255,0.1);
}