/*
Theme Name: SOS Cartuchos - Suprimentos de Impressão
Theme URI: https://soscartuchos.com.br
Description: Tema profissional para loja de suprimentos de impressão - Sistema de cores Material Design 3
Version: 1.1.4
Author: SOS Cartuchos
Author URI: https://soscartuchos.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sos-cartuchos
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

@import url("assets/css/custom-styles.css");

/* ============================================
   CUSTOMIZAÇÃO GERAL DO WORDPRESS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #f8f9ff;
    color: #0b1c30;
    line-height: 1.6;
    font-size: 16px;
}

/* Links */
a {
    color: #0047ab;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003580;
    text-decoration: underline;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #0b1c30;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 48px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 32px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0;
}

/* Buttons */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: #0047ab;
    color: #ffffff;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #00327d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.25);
}

button.secondary,
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
    background-color: transparent;
    border: 2px solid #0047ab;
    color: #0047ab;
}

button.secondary:hover,
input[type="button"].secondary:hover,
input[type="reset"].secondary:hover,
input[type="submit"].secondary:hover {
    background-color: #dae2ff;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #c3c6d5;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    background-color: #ffffff;
    color: #0b1c30;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0047ab;
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
}

label {
    display: block;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #434653;
    margin-bottom: 8px;
}

/* Layout Geral */
.container,
.wp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cards */
.card {
    background-color: #ffffff;
    border: 1px solid #c3c6d5;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* WordPress Classes */
.wp-block-column {
    margin-bottom: 24px;
}

.alignwide {
    max-width: 1280px;
}

.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Screen Readers */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .container,
    .wp-container {
        padding: 0 16px;
    }
}
