/**
 * Estilos principais do tema Guedez
 *
 * @package Guedez
 */

/* ============================================
   VARIÁVEIS CSS
   ============================================ */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --yellow: #FFD23F;
    --magenta: #E91E63;
    --teal: #00BCD4;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 20px 0;
    background: var(--dark-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-logo-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.custom-logo-link img {
    max-height: 60px;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--yellow);
}

.site-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.header-search {
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.header-search form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrapper {
    position: relative;
    flex: 1;
}

.header-search .search-field {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: var(--transition);
    min-height: 48px;
}

.header-search .search-field::placeholder {
    color: var(--text-light);
}

.header-search .search-field:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.header-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    color: var(--text-light);
    transition: var(--transition);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.header-search button:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.header-search button svg {
    width: 20px;
    height: 20px;
}

/* Sugestões de pesquisa */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: -1px;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: var(--text-dark);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background-color: #f8f8f8;
}

.search-suggestion-item .suggestion-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-suggestion-item .suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-item .suggestion-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-item .suggestion-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.search-suggestions-loading {
    padding: 15px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.search-suggestions-empty {
    padding: 15px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.whatsapp-button:hover {
    background: #20BA5A;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-button svg {
    flex-shrink: 0;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    border-radius: 50%;
}

.user-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.user-link-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: var(--transition);
}

.user-link-text:hover {
    color: var(--white);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    transition: var(--transition);
    border-radius: 50%;
}

.cart-link:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.1);
}

.cart-link svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #4CAF50;
    color: var(--white);
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0 4px;
    border: 2px solid var(--dark-gray);
    animation: cartPulse 2s ease-in-out infinite;
}

.cart-link.has-items .cart-count {
    display: flex;
}

.cart-link.cart-bounce {
    animation: cartBounce 0.6s ease;
}

@keyframes cartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
    }
    75% {
        transform: scale(1.2) rotate(5deg);
    }
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */
.main-navigation {
    background: var(--dark-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-navigation .container {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    color: var(--white);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menus-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu-primary a {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-menu-primary a:hover,
.nav-menu-primary .current-menu-item > a {
    background: var(--primary-color);
    color: var(--white);
}

.nav-menu-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

.nav-menu-secondary {
    margin-left: auto;
}

.nav-menu-secondary a {
    display: block;
    padding: 15px 20px;
    color: var(--yellow);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-menu-secondary a:hover,
.nav-menu-secondary .current-menu-item > a {
    color: var(--white);
    background: rgba(255, 210, 63, 0.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-banner {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
    animation: fadeIn 0.8s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-features ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-features li {
    font-size: 1.1rem;
    color: var(--white);
}

.hero-image {
    animation: fadeIn 1s ease-out;
}

.hero-img {
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

/* ============================================
   WHAT WE DO SECTION
   ============================================ */
.what-we-do-section {
    padding: 60px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    animation: fadeIn 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card-yellow {
    background: var(--yellow);
}

.service-card-magenta {
    background: var(--magenta);
    color: var(--white);
}

.service-card-teal {
    background: var(--teal);
    color: var(--white);
}

.service-icon {
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.featured-products-section,
.bestsellers-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-items: start;
    align-items: start;
}

.products-grid .product-item {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

.product-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f8f8f8;
}

.product-image-wrapper img,
.product-image-wrapper .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.product-item:hover .product-image-wrapper img {
    transform: scale(1.08);
}

/* Badges de Produto */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Cores pré-definidas para tags conhecidas */
.badge-promocao,
.badge-promoção {
    background: #E53935 !important;
}

.badge-novidade,
.badge-novo {
    background: #1976D2 !important;
}

.badge-premium {
    background: #FFD23F !important;
    color: #333 !important;
}

.badge-sublimacao-total,
.badge-sublimação-total,
.badge-sublimacao {
    background: #4CAF50 !important;
}

.badge-destaque {
    background: #FF6B35 !important;
}

.badge-lançamento,
.badge-lancamento {
    background: #9C27B0 !important;
}

.badge-esgotado {
    background: #757575 !important;
}

.badge-mais-vendido,
.badge-mais-vendido {
    background: #F44336 !important;
}

/* Efeito hover no badge */
.product-item:hover .product-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Wishlist */
.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

.product-wishlist:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-wishlist svg {
    width: 18px;
    height: 18px;
    stroke: #666;
    fill: none;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-wishlist:hover svg,
.product-wishlist.active svg {
    stroke: #E53935;
    fill: #E53935;
}

.product-wishlist.active {
    background: rgba(229, 57, 53, 0.1);
}

/* Garantir que o link do produto não interfira com o wishlist */
.product-card-link {
    position: relative;
}

.product-image-wrapper {
    pointer-events: none;
}

.product-image-wrapper .product-wishlist {
    pointer-events: auto;
}

.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
}

.product-price-wrapper {
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-sale {
    color: #E53935;
}

/* Estilos antigos mantidos para compatibilidade */
.product-meta {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-tags-wrapper,
.product-categories-wrapper {
    margin-bottom: 5px;
}

.product-tags a,
.product-categories a {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price del {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 10px;
}

.button,
.btn,
.add_to_cart_button {
    display: inline-block;
    padding: 12px 25px;
    background: #2196F3;
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.button:hover,
.btn:hover,
.add_to_cart_button:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-details {
    background: #8B4513;
}

.btn-quote {
    background: #4CAF50;
}

/* ============================================
   KALCER BANNER
   ============================================ */
.kalcer-banner-section {
    padding: 60px 0;
    background: var(--white);
}

.kalcer-banner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.kalcer-content {
    animation: fadeIn 0.8s ease-out;
}

.kalcer-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.kalcer-slogan {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.kalcer-image-wrapper {
    position: relative;
}

.kalcer-main-image {
    animation: fadeIn 1s ease-out;
}

.kalcer-main-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.kalcer-thumbnails {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.kalcer-nav {
    padding: 10px;
    color: var(--text-dark);
    transition: var(--transition);
}

.kalcer-nav:hover {
    color: var(--primary-color);
}

.kalcer-thumbnail-list {
    display: flex;
    gap: 10px;
}

.kalcer-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.kalcer-thumb:hover,
.kalcer-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

/* ============================================
   CORPORATE UNIFORMS
   ============================================ */
.corporate-uniforms-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.corporate-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.corporate-info {
    background: #E0E0E0;
    padding: 40px;
    border-radius: 10px;
}

.corporate-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.corporate-materials {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.corporate-materials li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.corporate-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.corporate-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.corporate-banner {
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.corporate-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.banner-quality {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.banner-quote {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-mascot {
    margin: 20px 0;
    animation: float 3s ease-in-out infinite;
}

.banner-mascot img {
    max-width: 150px;
    height: auto;
}

.banner-categories {
    margin: 20px 0;
}

.banner-categories li {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* ============================================
   ORDER BANNER
   ============================================ */
.order-banner-section {
    padding: 60px 0;
    background: var(--white);
}

.order-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.order-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    animation: fadeIn 0.8s ease-out;
}

.order-image {
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.order-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    margin-bottom: 20px;
}

.order-shipping {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.site-footer .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-widgets {
    margin-bottom: 40px;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget-area h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-widget-area ul {
    list-style: none;
}

.footer-widget-area ul li {
    margin-bottom: 10px;
}

.footer-widget-area a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-widget-area a:hover {
    color: var(--primary-color);
}

.contact-info li {
    margin-bottom: 15px;
}

.contact-info strong {
    display: block;
    margin-bottom: 5px;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content,
    .kalcer-banner,
    .corporate-content-grid,
    .order-banner-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container-full {
        padding: 0 20px;
    }
    
    .header-top-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .header-search {
        max-width: 100%;
        order: 3;
    }
    
    .header-search .search-field {
        padding: 12px 45px 12px 18px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .header-search button {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .header-actions {
        justify-content: space-between;
        flex-wrap: wrap;
        order: 2;
    }

    .site-branding {
        order: 1;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menus-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-gray);
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menus-wrapper.active {
        max-height: 1000px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu-separator {
        display: none;
    }

    .nav-menu-secondary {
        margin-left: 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .price-current {
        font-size: 1rem;
    }

    .footer-widgets-grid {
        grid-template-columns: 1fr;
    }

    .kalcer-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .container-full {
        padding: 0 15px;
    }

    .hero-banner {
        padding: 25px;
    }

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

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

    .order-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   NOTIFICAÇÕES
   ============================================ */
.guedez-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: var(--white);
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: var(--transition);
    box-shadow: var(--shadow-hover);
}

.guedez-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.guedez-notification.success {
    background: #4CAF50;
}

.guedez-notification.error {
    background: #f44336;
}

.guedez-notification.info {
    background: #2196F3;
}

/* ============================================
   HEADER SCROLLED
   ============================================ */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .header-top {
    padding: 10px 0;
}

/* ============================================
   ERROR 404
   ============================================ */
.error-404 {
    text-align: center;
    padding: 60px 20px;
}

.error-404 .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.error-404 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ==================================================
   HOME PAGE PERSONALIZADA (PROFISSIONAL)
   ================================================== */

/* Utilitários */
.my-60 { margin-top: 60px; margin-bottom: 60px; }

/* 1. Hero Banner Responsivo */
.hero-section-custom {
    width: 100%;
    overflow: hidden;
    line-height: 0; /* Remove espaço branco extra em img */
    background: #f0f0f0; /* Placeholder enquanto carrega */
}

.hero-img-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 200px; /* Evita layout shift */
}

/* 2. Seção "O Que Fazemos" (Estilo Box Colorido) */
.section-title-home {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.services-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-box {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-box h3 {
    color: #333; /* Texto escuro para contraste no amarelo */
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    z-index: 2;
}

.service-box .icon-wrap {
    margin-right: 15px;
    background: rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cores Específicas (Baseado no Esboço) */
.box-yellow {
    background-color: #FFD23F; /* Amarelo Vibrante */
    color: #333;
}

.box-pink {
    background-color: #E91E63; /* Rosa Magenta */
    color: #fff;
}
.box-pink h3 { color: #fff; } /* Texto branco no rosa */

.box-blue {
    background-color: #00BCD4; /* Azul Ciano */
    color: #fff;
}
.box-blue h3 { color: #fff; } /* Texto branco no azul */


/* 3. Vitrines de Produtos */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}
.view-all-link:hover .arrow { transform: translateX(3px); transition: 0.2s; }

/* 4. Banner Promocional Meio */
.promo-banner-middle {
    margin: 60px 0;
    width: 100%;
}
.promo-img-full {
    width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVIDADE HOME */
@media (max-width: 768px) {
    .services-grid-custom {
        grid-template-columns: 1fr; /* Um box abaixo do outro */
        gap: 15px;
    }

    .service-box {
        padding: 20px;
    }
    
    .section-title-home {
        font-size: 1.2rem;
    }
    
    .my-60 { margin-top: 30px; margin-bottom: 30px; }
} 


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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    z-index: 999999;
}

.skip-link:focus {
    top: 0;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ============================================
   NOTIFICAÇÕES
   ============================================ */
.guedez-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 90vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.guedez-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.guedez-notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.guedez-notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.guedez-notification.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.guedez-notification.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ============================================
   MELHORIAS RESPONSIVAS
   ============================================ */
@media (max-width: 480px) {
    .guedez-notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
