/**
 * Coming Soon Page - Samantha Fashion Style
 * Página de Manutenção com design customizado
 */

/* Reset e Base */
.woocommerce-store-notice,
.wp-site-blocks {
    margin: 0 !important;
    padding: 0 !important;
}

body.page-template-default {
    background-color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    color: #36393d;
}

/* Força esconder header/footer quando Coming Soon está ativo */
body.coming-soon-active header,
body.coming-soon-active .site-header,
body.coming-soon-active footer.site-footer,
body.coming-soon-active aside,
body.coming-soon-active .sidebar,
body.coming-soon-active .pills-container,
body.coming-soon-active .home-categories,
body.coming-soon-active .trend-categories,
body.coming-soon-active .categories-menu,
body.coming-soon-active nav.categories,
body.coming-soon-active .product-categories,
body.coming-soon-active .breadcrumb,
body.coming-soon-active .woocommerce-breadcrumb,
body.coming-soon-active .trend-breadcrumb,
body.coming-soon-active .page-header,
body.coming-soon-active .entry-header,
body.coming-soon-active .trend-page-title {
    display: none !important;
}

/* Garante que o body ocupe toda a altura SEM margens/padding */
body.coming-soon-active {
    background-color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden; /* Evita scroll horizontal */
}

/* Wrapper customizado SEM padding lateral */
.trend-coming-soon-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    margin: 0;
    padding: 0; /* SEM padding - linhas vão de ponta a ponta */
}

/* Container Principal SEM padding lateral */
.wp-block-woocommerce-coming-soon {
    padding: 0 !important; /* SEM padding - linhas de ponta a ponta */
    margin: 0 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Remove spacers que criam linhas estranhas */
.wp-block-woocommerce-coming-soon .wp-block-spacer {
    display: none !important;
}

/* Logo no topo com linha APENAS EMBAIXO (de ponta a ponta) */
.coming-soon-logo {
    text-align: center;
    padding: 20px 0; /* SEM padding lateral */
    margin-bottom: 0;
    background-color: #fff;
    width: 100%;
    position: relative;
    /* SEM box-shadow aqui - usamos ::after para linha só embaixo */
}

/* Linha SOMENTE embaixo da logo (de ponta a ponta) */
.coming-soon-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    /* Linha com sombra APENAS embaixo */
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.15);
    -ms-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.15);
    -moz-box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.15);
    box-shadow: 0 2px 2px 0 rgba(50, 50, 50, 0.15);
}

.coming-soon-logo img {
    max-width: 300px;
    max-height: 180px;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
}

/* Conteúdo Principal */
.coming-soon-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 10px;
    max-width: 1170px;
    margin: 0 auto;
    width: 100%;
}

/* Círculo com ícone de manutenção */
.circle-box {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    padding: 50px 20px;
    text-align: center;
    border-radius: 200px;
    border: dashed #fd64c4 5px;
}

.circle-icon {
    width: 60%;
    margin: auto;
}

.construction-page-svg {
    width: 100%;
    height: auto;
    fill: #36393d;
}

/* Texto principal */
.coming-soon-message {
    width: 100%;
    max-width: 83.33%;
    margin: 0 auto 20px;
}

.divider {
    width: 100%;
    margin: 20px 0;
    border-bottom: 1px solid rgba(54, 57, 61, 0.1);
}

.coming-soon-title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: #36393d;
    margin: 20px 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .circle-box {
        width: 350px;
        height: 350px;
        padding: 90px 20px;
    }
    
    .coming-soon-title {
        font-size: 30px;
    }
}

/* Redes Sociais com linha APENAS EMBAIXO (de ponta a ponta, mais forte) */
.social-networks {
    margin: 40px 0 0 0;
    padding: 0 0 30px 0; /* SEM padding lateral */
    text-align: center;
    width: 100%;
    background-color: #fff;
    position: relative;
    /* SEM box-shadow aqui - usamos ::after para linha só embaixo */
}

/* Linha SOMENTE embaixo do Instagram (de ponta a ponta - MAIS FORTE) */
.social-networks::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    /* Linha com sombra APENAS embaixo - mais forte que a logo */
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: 0 3px 4px 0 rgba(50, 50, 50, 0.25);
    -ms-box-shadow: 0 3px 4px 0 rgba(50, 50, 50, 0.25);
    -moz-box-shadow: 0 3px 4px 0 rgba(50, 50, 50, 0.25);
    box-shadow: 0 3px 4px 0 rgba(50, 50, 50, 0.25);
}

.social-networks .title-container {
    clear: both;
}

.social-networks .subtitle {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.subtitle::before,
.subtitle::after {
    flex-grow: 1;
    height: 1px;
    content: " ";
    background-color: #ecf0f1;
    position: relative;
    top: 0;
}

.subtitle::before {
    margin-right: 10px;
}

.subtitle::after {
    margin-left: 10px;
}

.social-networks ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.social-networks li {
    display: inline-block;
    margin: 0 5px 10px;
}

/* Botão Instagram */
.btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
    outline: 0;
    border: none;
    border-bottom: 4px solid #fc32b1;
    background: linear-gradient(to bottom, rgba(253, 100, 196, 0.7) 0%, rgba(253, 100, 196, 0.9) 100%);
    transition: all 0.3s ease;
}

.btn-circle svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.btn-circle:hover {
    opacity: 0.8;
    background: linear-gradient(to bottom, rgba(253, 100, 196, 0.8) 0%, #fd64c4 100%);
    border-bottom: 0;
    transform: scale(1.05);
}

.btn-circle:active {
    background: linear-gradient(to bottom, rgba(253, 100, 196, 0.7) 0%, rgba(253, 100, 196, 0.9) 100%);
    border-bottom: 0;
    box-shadow: none;
}

/* Seção de Contato com espaço reduzido */
.contact-data {
    margin: 40px 0 0;
    text-align: center;
}

.footer-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 0 20px;
    color: #36393d;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-list svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    fill: #36393d;
    margin-top: 2px;
}

.footer-list a {
    color: rgba(54, 57, 61, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #fd64c4;
}

/* Footer com Copyright (padding reduzido) */
.coming-soon-footer {
    background-color: #fff;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid rgba(54, 57, 61, 0.1);
    margin-top: 0;
}

.coming-soon-footer p {
    margin: 5px 0; /* ✅ Reduzido de 8px para 5px */
    font-size: 14px;
    color: #36393d;
    line-height: 1.5;
}

.coming-soon-footer .trend-footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.5;
}

.trend-footer-credit-text {
    color: #36393d;
}

.trend-footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.trend-footer-logo-link:hover {
    opacity: 0.8;
}

.trend-footer-logo-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px; /* Mesmo tamanho do texto */
    font-weight: 600;
    text-transform: lowercase;
    line-height: 1.5;
    display: inline;
}

.trend-logo-tenda {
    color: #58a76e;
}

.trend-logo-commerce {
    color: #374151;
}

/* Responsivo */
@media (max-width: 767px) {
    .coming-soon-logo {
        padding: 20px 15px 15px;
    }
    
    .coming-soon-logo img {
        max-width: 200px;
    }
    
    .coming-soon-content {
        padding: 20px 15px 10px;
    }
    
    .coming-soon-message {
        max-width: 100%;
    }
    
    .coming-soon-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .footer-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
