/*
Theme Name: Sanita LP
Theme URI: https://sanita.ind.br/
Author: https://www.linkedin.com/in/weeys/
Author URI: 
Description: Tema personalizado para Landing Page Sanita - Estojo Evoluto
Version: 1.0
Text Domain: sanita-lp
*/

body {
    margin: 0;
    font-family: 'Poppins', system-ui, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* ==================== HEADER ==================== */
.site-header {
    background: #9C1C2B;
    color: white;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.site-header .container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* Logo */
.logo-svg {
    height: 52px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-svg {
    transform: scale(1.06);
}

/* Menu com animação */
.main-nav a {
    margin: 0 22px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #353535;
    transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.main-nav a:hover {
        background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Botões do Header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-painel {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.75);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-painel:hover {
    background: white;
    color: #9C1C2B;
    transform: translateY(-3px);
}

.btn-contato {
    background: white;
    color: #9C1C2B;
    padding: 11px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-contato:hover {
    background: #353535;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==================== SEÇÃO HERO + GRID DOS ESTOJOS ==================== */
.hero-section {
    padding: 70px 5% 6px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.texto-esquerda {
    flex: 1;
    min-width: 320px;
    padding-top: 30px;
}

.texto-esquerda h1 {
    font-size: 55px;
    line-height: 1.15;
    font-weight: 700;
    color: #353535;
    margin: 40px;
    transform: translateX(-250px); 
}

/* GRID PRINCIPAL - 3 CARDS POR LINHA */
.grid-estojos {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);     /* Força 3 colunas */
    gap: 20px;
    width: 100%;
}

/* Responsividade */
@media (max-width: 1100px) {
    .grid-estojos {
        grid-template-columns: repeat(2, 1fr);   /* 2 cards em telas menores */
    }
}

@media (max-width: 700px) {
    .grid-estojos {
        grid-template-columns: 1fr;              /* 1 card no celular */
    }
}

/* Card Individual */
.card-estojo {
    background: white;
    border-radius: 20px;
    padding: 25px 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 85%;
    display: flex;
    flex-direction: column;
}

.card-estojo:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(156, 28, 43, 0.15);
}

.image-wrapper {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -50px;
}

.card-estojo img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.card-estojo:hover img {
    transform: scale(1.05);
}

.card-estojo h3 {
    color: #9C1C2B;
    font-size: 21px;
    margin: 12px 0 10px;
    font-weight: 600;
}

.btn-personalizar {
    color: #9C1C2B;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding-top: 10px;
}

.btn-personalizar:hover {
    text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #353535;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px 30px;
    margin-top: 80px;
}

.site-footer .container {
    max-width: 1280px;
    margin: 0 auto;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Container Geral */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}