/* ================= VARIÁVEIS ================= */
:root {
    --preto: #000000;
    --branco: #FFFFFF;
    --bege: #D9C7B8;
    --azul: #1E3A8A;
    --marrom: #5C4033;
    --azul-claro: #f0f4ff;
    --cinza-claro: #f8f9fa;
}

/* ================= WHATSAPP PREMIUM ================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid white;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

/* Modal premium - TAMANHO MÉDIO */
.whatsapp-modal {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 25px;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 1001;
    animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e8f5e8;
    overflow: hidden;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-modal-content {
    position: relative;
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    backdrop-filter: blur(10px);
}

.close-modal {
    color: white;
    font-size: 22px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.whatsapp-modal-body {
    padding: 20px 20px 15px;
}

.whatsapp-modal-body h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.whatsapp-modal-body p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
}

.whatsapp-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.feature i {
    color: #25D366;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.feature span {
    color: #333;
    font-weight: 500;
    font-size: 13px;
}

.whatsapp-modal-footer {
    padding: 0 20px 20px;
    text-align: center;
}

.btn-whatsapp-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-whatsapp-premium:hover::before {
    left: 100%;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-premium i:last-child {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-whatsapp-premium:hover i:last-child {
    transform: translateX(3px);
}

.whatsapp-note {
    margin-top: 10px;
    font-size: 11px;
    color: #888;
    font-style: italic;
}

/* Responsividade do WhatsApp Modal */
@media (max-width: 480px) {
    .whatsapp-modal {
        width: 280px;
        right: 20px;
        bottom: 100px;
    }

    .whatsapp-modal-header {
        padding: 15px;
    }

    .whatsapp-modal-body {
        padding: 15px 15px 10px;
    }

    .whatsapp-modal-body h3 {
        font-size: 18px;
    }

    .whatsapp-modal-body p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .whatsapp-modal-footer {
        padding: 0 15px 15px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 380px) {
    .whatsapp-modal {
        width: 260px;
        right: 15px;
        bottom: 90px;
    }

    .whatsapp-modal-header {
        padding: 12px;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .close-modal {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--branco);
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ================= MODAL DE STATUS ================= */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 35px;
    border: none;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--azul);
}

#modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.modal-success #modal-icon {
    color: #4CAF50;
}

.modal-error #modal-icon {
    color: #f44336;
}

#modal-title {
    margin: 0 0 15px 0;
    font-size: 1.6em;
    color: #333;
    font-weight: 700;
}

#modal-message {
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

#modal-ok-button {
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--azul), #2d4fb8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#modal-ok-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* ================= HEADER ================= */
.header {
    background-color: var(--branco);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    position: relative;
}

/* Logo */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 10vh;
    width: auto;
    object-fit: contain;
    transform: scale(1.5);
    transform-origin: left center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Navegação */
.nav {
    display: flex;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--azul), var(--bege));
    transition: width 0.3s ease;
}

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

.nav a:hover {
    color: var(--azul);
    transform: translateY(-2px);
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--preto);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.header-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.search-btn,
.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--preto);
    position: relative;
    padding: 0.6rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover,
.cart-btn:hover {
    background-color: var(--bege);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: linear-gradient(135deg, var(--azul), #2d4fb8);
    color: var(--branco);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

/* ================= BARRA DE PESQUISA ================= */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    margin-top: 4rem;
    width: 90%;
    max-width: 700px;
    display: flex;
    background: white;
    border: 2px solid var(--azul);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.3);
    transform: translateY(-2px);
}

#searchInput {
    flex-grow: 1;
    padding: 16px 28px;
    border: none;
    font-size: 1.2em;
    outline: none;
    background: transparent;
}

#searchInput::placeholder {
    color: #999;
}

#closeSearchBtn {
    background: transparent;
    color: #666;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    font-size: 1.3em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#closeSearchBtn:hover {
    color: var(--azul);
    transform: scale(1.1);
}

/* ================= LISTA DE RESULTADOS ================= */
.search-results-list {
    margin-top: 25px;
    width: 90%;
    max-width: 700px;
    max-height: 65vh;
    overflow-y: auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--azul), var(--bege));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.search-result-item:hover::before {
    transform: scaleY(1);
}

.search-result-item:hover {
    background: linear-gradient(135deg, #f8faff, #f0f4ff);
    transform: translateX(8px);
    border-color: transparent;
}

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

.search-result-image {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--cinza-claro);
    padding: 8px;
    transition: transform 0.3s ease;
}

.search-result-item:hover .search-result-image {
    transform: scale(1.1);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
    font-size: 1.1em;
}

.search-result-price {
    color: var(--azul);
    font-weight: 800;
    font-size: 1.2em;
}

.no-results-message,
.loading-message,
.initial-search-message {
    text-align: center;
    padding: 50px 30px;
    color: #666;
    font-size: 1.2em;
    line-height: 1.6;
}

/* ================= HERO ================= */
.hero {
    background: url('/assets/dropimg.png') center 100% / contain;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: #fff;
    background-position-y: 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(217, 199, 184, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 25px;
}

.hero-content .btn-primary {
    margin-top: 500px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= BOTÕES ================= */
.btn-primary {
    background: linear-gradient(135deg, var(--azul) 0%, #2d4fb8 100%);
    color: var(--branco);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--marrom) 0%, #6d5247 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(92, 64, 51, 0.4);
}

/* ================= SEÇÕES ================= */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--azul);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--azul), var(--bege));
    border-radius: 2px;
}

/* ================= PRODUTOS ================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--azul), var(--bege));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.product-image img {
    width: 120%;
    height: 150%;
    object-fit: contain;
    display: block;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.12);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--preto);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
    line-height: 1.4;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.3px;
}

/* ================= PREÇO E PARCELAMENTO ================= */
.product-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--azul-claro) 0%, #e8edff 100%);
    border-radius: 16px;
    border: 2px solid #e8edff;
    position: relative;
    overflow: hidden;
}

.product-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--azul), var(--bege));
}

.main-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--azul);
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 3px 6px rgba(30, 58, 138, 0.15);
    letter-spacing: -0.8px;
}

.installment-option {
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0.7rem;
}

.installment-option::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--azul);
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.installment-option:hover::before {
    opacity: 1;
    transform: scale(1);
}

.installment-option:last-child {
    border-bottom: none;
}

.installment-option:hover {
    color: var(--azul);
    transform: translateX(10px);
    font-weight: 700;
}

.installment-option.highlight {
    background: linear-gradient(135deg, var(--azul) 0%, #2d4fb8 100%);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    font-weight: 800;
    border: none;
    transform: none;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    position: relative;
    overflow: hidden;
}

.installment-option.highlight::before {
    content: '⭐';
    position: absolute;
    left: 12px;
    opacity: 1;
    transform: scale(1);
    color: gold;
}

.installment-option.highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.5);
}

/* Container do botão */
.product-button-container {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
}

/* Sobre */
.about {
    background-color: #FFF8E6;
    position: relative;
    overflow: hidden;
}

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

.about-content h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--marrom);
    font-size: 2.8rem;
    font-weight: 800;
}

.about-content>p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a4a3a;
    font-weight: 500;
}

/* ================= SOBRE COM IMAGEM ================= */
.about-image {
    max-width: 750px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.sobre-imagem {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.instagram-icon:hover {
    transform: scale(1.15) rotate(5deg);
    color: var(--bege);
}

.instagram h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.instagram-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.instagram-header strong {
    color: var(--bege);
    font-weight: 700;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--branco), #f8f9fa);
    color: var(--azul);
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border: 3px solid transparent;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.instagram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.instagram-btn:hover::before {
    left: 100%;
}

.instagram-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, var(--bege), #e8d5c4);
    color: var(--marrom);
    border-color: rgba(255, 255, 255, 0.3);
}

.instagram-btn i {
    font-size: 1.6rem;
}

/* Footer */
.rodape-principal {
    background: linear-gradient(135deg, var(--preto) 0%, #2d2d2d 100%);
    color: var(--branco);
    padding: 60px 0 0;
    border-top: 4px solid var(--azul);
    position: relative;
    overflow: hidden;
}

.rodape-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--azul), transparent);
}

.rodape-principal .conteiner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.secao-rodape h4 {
    color: var(--bege);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.secao-rodape h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--azul), var(--bege));
    border-radius: 2px;
}

.secao-rodape p,
.secao-rodape li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.secao-rodape ul {
    list-style: none;
}

.secao-rodape a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.secao-rodape a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.secao-rodape a:hover {
    color: var(--bege);
    padding-left: 15px;
}

.secao-rodape a:hover::before {
    opacity: 1;
    left: 0;
}

.icones-sociais,
.metodos-pagamento {
    display: flex;
    gap: 18px;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.icones-sociais a {
    color: var(--branco);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.icones-sociais a:hover {
    color: var(--bege);
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.metodos-pagamento i {
    color: var(--branco);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.metodos-pagamento i:hover {
    color: var(--bege);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.copyright {
    background: linear-gradient(135deg, var(--marrom) 0%, #4a352b 100%);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--branco);
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* ================= RESPONSIVIDADE ================= */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero {
        min-height: 600px;
        background-position-y: 100px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }

    .product-image {
        height: 280px;
    }
}

@media (max-width: 940px) {
    .hero {
        min-height: 500px;
        background-position-y: 100px;
    }

    .hero-content .btn-primary {
        margin-top: 400px;
    }
}

@media (max-width: 768px) {

    .about-image {
        max-width: 90%;
        border-radius: 16px;
    }

    .sobre-imagem {
        max-width: 250px;
    }

    .header .container {
        flex-wrap: wrap;
        padding: 1rem 20px;
    }

    .logo-img {
        transform: scale(1.3);
    }

    .nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }

    .nav.active {
        display: block;
        background: var(--branco);
        padding: 20px 0;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 1rem;
    }

    .nav ul {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }

    .nav a {
        font-size: 1.1rem;
        padding: 12px 0;
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        order: 2;
        margin-left: auto;
    }

    .hero {
        background-size: 700px auto;
        background-position: 50 center;
        background-position-y: 75px;
        min-height: 450px;
        padding: 40px 20px;
    }

    .hero-content .btn-primary {
        margin-top: 350px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    section {
        padding: 80px 0;
    }

    .search-overlay {
        padding-top: 8vh;
    }

    .search-container {
        width: 95%;
        margin-top: 5rem;
    }

    /* PRODUTOS 2 POR 2 EM TABLETS E CELULARES MÉDIOS */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-image {
        height: 200px;
        padding: 15px;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-info h3 {
        font-size: 1rem;
        min-height: 2.4rem;
        margin-bottom: 0.8rem;
    }

    .product-pricing {
        padding: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .main-price {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .installment-option {
        font-size: 0.75rem;
        padding: 0.25rem 0;
        padding-left: 0.8rem;
    }

    .btn-primary {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .instagram h2 {
        font-size: 2.2rem;
    }

    .instagram-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .hero {
        background-size: 600px;
        background-position-y: 70px;
        background-position: 50 center;
        min-height: 400px;
    }

    .hero-content .btn-primary {
        margin-top: 300px;
        padding: 14px 28px;
        font-size: 1rem;
    }

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

    .products-grid {
        gap: 1.2rem;
    }

    .product-image {
        height: 180px;
    }
}

/* MANTÉM 2 POR 2 EM TELAS BEM PEQUENAS */
@media (max-width: 480px) {
    .about-image {
        max-width: 95%;
        border-radius: 12px;
    }

    .sobre-imagem {
        max-width: 200px;
    }

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

    .hero {
        background-size: 480px auto;
        background-position: 50 center;
        background-position-y: 100px;
        min-height: 350px;
    }

    .hero-content .btn-primary {
        margin-top: 280px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-image {
        height: 160px;
        padding: 12px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 0.9rem;
        min-height: 2.2rem;
        margin-bottom: 0.6rem;
    }

    .product-pricing {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .main-price {
        font-size: 1.3rem;
    }

    .installment-option {
        font-size: 0.7rem;
        padding-left: 0.7rem;
    }

    .btn-primary {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content>p {
        font-size: 1.1rem;
    }

    .instagram h2 {
        font-size: 1.8rem;
    }

    .instagram-icon {
        font-size: 4rem;
    }

    .instagram-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .rodape-principal .conteiner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .icones-sociais,
    .metodos-pagamento {
        justify-content: center;
    }
}

/* TELAS MINÚSCULAS - AINDA MANTÉM 2 POR 2 */
@media (max-width: 380px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .container {
        padding: 0 12px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        height: 140px;
        padding: 10px;
    }

    .product-info {
        padding: 0.8rem;
    }

    .product-info h3 {
        font-size: 0.85rem;
        min-height: 2rem;
        margin-bottom: 0.5rem;
    }

    .product-pricing {
        padding: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .main-price {
        font-size: 1.2rem;
    }

    .installment-option {
        font-size: 0.65rem;
        padding-left: 0.6rem;
    }

    .btn-primary {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

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

    .hero {
        min-height: 320px;
    }

    .hero-content .btn-primary {
        margin-top: 280px;
        padding: 12px 24px;
    }
}

/* TELAS SUPER PEQUENAS - FINALMENTE 1 POR 1 */
@media (max-width: 320px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .container {
        padding: 0 10px;
    }

    .product-card {
        border-radius: 10px;
        max-width: 280px;
        margin: 0 auto;
    }

    .product-image {
        height: 150px;
        padding: 12px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 0.9rem;
        min-height: 2.2rem;
    }

    .product-pricing {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .main-price {
        font-size: 1.3rem;
    }

    .installment-option {
        font-size: 0.7rem;
    }

    .btn-primary {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .hero {
        min-height: 300px;
        padding: 30px 15px;
    }

    .hero-content .btn-primary {
        margin-top: 230px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}