/**
 * Theme Name:     Quantum house
 * Author:         Marcus Cogo
 * Template:       hello-elementor
 * Text Domain:	   Quantumhouse
 * Description:    Thema exclusivo nutragold
 * Theme URI:      http://quantumhouse.com
 * Author URI:     http://blckstudio.com.br
 * Version:        1.0
 */

/* Reset básico para garantir consistência entre navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Cabeçalho */
.site-header {
    background-color: #1B3FA6;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.site-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.site-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Navegação */
.main-navigation {
    background-color: #1B3FA6;
    padding: 10px 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-navigation ul li {
    margin: 0;
}

.main-navigation ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation ul li a:hover {
    color: #ffd700; /* Um tom de dourado para contraste */
}

/* Conteúdo Principal */
.site-main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.entry-title {
    font-size: 2rem;
    color: #1B3FA6;
    margin-bottom: 20px;
    font-weight: 600;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Rodapé */
.site-footer {
    background-color: #1B3FA6;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.site-footer a {
    color: #ffd700; /* Dourado para links no rodapé */
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

/* Botões */
.button, button, input[type="submit"] {
    background-color: #1B3FA6;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover, button:hover, input[type="submit"]:hover {
    background-color: #152a6e; /* Tom mais escuro para hover */
    transform: translateY(-2px);
}

/* Cards */
.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Formulários */
input[type="text"], input[type="email"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
    border-color: #1B3FA6;
    outline: none;
    box-shadow: 0 0 5px rgba(27, 63, 166, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .site-header h1 {
        font-size: 2rem;
    }

    .entry-title {
        font-size: 1.5rem;
    }

    .button, button, input[type="submit"] {
        width: 100%;
        padding: 12px;
    }
}

/* Página Single Product */
.single-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-product-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Imagem do Produto */
.woocommerce-product-gallery {
    flex: 1 1 50%;
    max-width: 50%;
}

.woocommerce-product-gallery__image img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.woocommerce-product-gallery__image img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Sumário do Produto */
.summary.entry-summary {
    flex: 1 1 45%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product_title {
    font-size: 2rem;
    color: #1B3FA6;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    color: #1B3FA6;
    font-weight: 600;
    margin-bottom: 20px;
}

.price del {
    color: #777;
    font-size: 1.2rem;
    margin-right: 10px;
}

.price ins {
    text-decoration: none;
}

/* Botão de Compra */
.single_add_to_cart_button {
    background-color: #1B3FA6;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    margin-top: 20px;
}

.single_add_to_cart_button:hover {
    background-color: #152a6e;
    transform: translateY(-2px);
}

/* Descrição do Produto */
.woocommerce-tabs {
    margin-top: 40px;
    flex: 1 1 100%;
}

.woocommerce-tabs ul.tabs {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin-bottom: 20px;
}

.woocommerce-tabs ul.tabs li {
    background-color: #1B3FA6;
    border-radius: 4px;
}

.woocommerce-tabs ul.tabs li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    font-weight: 500;
}

.woocommerce-tabs ul.tabs li.active {
    background-color: #152a6e;
}

.woocommerce-Tabs-panel {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Produtos Relacionados */
.related.products {
    margin-top: 60px;
    flex: 1 1 100%;
}

.related.products h2 {
    font-size: 1.5rem;
    color: #1B3FA6;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .single-product-content {
        flex-direction: column;
    }

    .woocommerce-product-gallery {
        max-width: 100%;
    }

    .summary.entry-summary {
        max-width: 100%;
    }
}