/* Reset de Estilos Básicos */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
    background-color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Body offset for Fixed Header */
body {
    padding-top: 85px; /* Altura do header em desktop */
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Altura do header em mobile */
    }
}

/* Header & Navbar com Gradiente e Efeito de Vidro */
.header-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px max(20px, calc((100% - 1100px) / 2));
    color: white;
    background: linear-gradient(to right, rgba(255, 209, 102, 0.88), rgba(247, 141, 167, 0.88), rgba(181, 95, 230, 0.88));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header-banner.solid {
    background: linear-gradient(to right, #ffd166, #f78da7, #b55fe6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 12px max(20px, calc((100% - 1100px) / 2));
}

.header-banner.hide {
    transform: translateY(-100%);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    margin: 0;
    order: 1;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    order: 2;
}

.navbar a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.navbar a:hover, .navbar a.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

.header-actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 18px;
    min-height: 44px;
    cursor: pointer;
    font-size: 15px;
    backdrop-filter: blur(8px);
    transition: background-color 0.2s, transform 0.2s;
}

.cart-toggle-btn:active {
    transform: scale(0.96);
}

.cart-count {
    background: #ffffff;
    color: #b55fe6;
    border-radius: 999px;
    padding: 2px 8px;
    font-weight: 700;
    font-size: 13px;
}

/* Hamburguer Menu Button */
.hamburger-menu-btn {
    display: none; /* Escondido por padrão no Desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 9px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Seção de Ilustrações dos Bichinhos */
.banner-animals {
    background-color: #ffffff;
    padding: 40px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animals-container {
    max-width: 1100px;
    width: 100%;
}

.watercolor-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção do Catálogo */
.catalogo-section {
    background-color: #faf7f2; /* Off-white de fundo do catálogo */
    padding: 60px 20px;
    text-align: center;
}

.catalogo-title {
    color: #e25c97;
    font-size: 36px;
    font-family: 'Georgia', serif;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: bold;
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 14px;
    max-width: 960px;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 769px) {
    .catalogo-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.catalogo-item {
    background-color: #ffffff;
    border: 1px solid #f1eef4;
    border-radius: 18px;
    padding: 12px 10px;
    min-height: 180px;
    width: 100%;
    max-width: 160px;
    color: #444;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-decoration: none;
    margin: 0 auto;
}

@media (hover: hover) {
    .catalogo-item:hover {
        transform: scale(1.03) translateY(-4px);
        box-shadow: 0 12px 24px rgba(181, 95, 230, 0.15);
        border-color: #b55fe6;
    }
}

.catalogo-item:active {
    transform: scale(0.97) translateY(-1px);
    box-shadow: 0 6px 12px rgba(181, 95, 230, 0.08);
}

.catalogo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    font-family: 'Georgia', serif;
}

.catalogo-item {
    text-decoration: none;
}

.catalogo-item p,
.catalogo-item a,
.catalogo-item span {
    text-decoration: none !important;
}

.catalogo-item p {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.3;
    color: #4a3e55;
    font-family: 'Georgia', serif;
    font-weight: 500;
}

.catalogo-item-title {
    font-size: 13px;
    margin: 10px 0 4px;
    color: #3a2a44;
    font-family: 'Georgia', serif;
    font-weight: 500;
    text-transform: none;
}

.catalogo-item-description {
    font-size: 12px;
    color: #6b5a75;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.3;
}

.catalogo-meta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
}

.catalogo-price {
    font-weight: 700;
    color: #c63c79;
    font-size: 16px;
}

.catalogo-buy-btn,
.cart-add-btn,
.gallery-item .cart-add-btn {
    border: none !important;
    background-color: #b55fe6 !important;
    color: #fff !important;
    padding: 12px 16px !important;
    width: 100% !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 2 !important;
}

.catalogo-buy-btn:hover,
.cart-add-btn:hover,
.gallery-item .cart-add-btn:hover {
    background-color: #9b3ec2 !important;
    transform: translateY(-1px) !important;
}

.catalogo-buy-btn:active,
.cart-add-btn:active,
.gallery-item .cart-add-btn:active {
    transform: scale(0.96) translateY(0) !important;
}


.gallery-item h3,
.catalogo-item-title {
    font-size: 15px;
    font-family: 'Georgia', serif;
    margin: 10px 0 6px;
}

.gallery-item p,
.catalogo-item-description {
    font-size: 13px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.product-gallery .gallery-item {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 380px !important;
    padding: 18px !important;
    background: #ffffff !important;
    border-radius: 18px !important;
    border: 1px solid #f1eef4 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05) !important;
    position: relative !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease !important;
}

.product-gallery .gallery-item:hover {
    transform: scale(1.03) translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(181, 95, 230, 0.15) !important;
    border-color: #b55fe6 !important;
}

.product-gallery .gallery-item:active {
    transform: scale(0.97) translateY(-1px) !important;
    box-shadow: 0 6px 12px rgba(181, 95, 230, 0.08) !important;
}

.item-icon img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.item-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cart-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(380px, 100%);
    background: #fff;
    box-shadow: -12px 0 35px rgba(0,0,0,0.12);
    z-index: 1001;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.cart-sidebar.show {
    transform: translateX(0);
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 24px;
    color: #3a2a44;
}

.cart-sidebar-header p {
    margin: 4px 0 0;
    color: #7c6d86;
    font-size: 14px;
}

.cart-close-btn {
    border: none;
    background: transparent;
    color: #444;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
.cart-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.cart-sidebar .cart-items {
    flex: 1;
    overflow-y: auto;
    min-height: 120px;
    border: 1px dashed #e5c7de;
    border-radius: 14px;
    padding: 16px;
    background-color: #faf5fb;
    margin-bottom: 20px;
}

.cart-sidebar-footer {
    display: grid;
    gap: 12px;
}

.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #3a2a44;
}

.cart-sidebar-total strong {
    color: #c63c79;
}

.cart-checkout-btn {
    width: 100%;
    background-color: #c63c79;
    color: #fff;
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    transition: background-color 0.2s ease;
}

.cart-checkout-btn:hover:not(:disabled) {
    background-color: #a01d5f;
}

.cart-checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-clear-btn {
    width: 100%;
    border: 1px solid #c63c79;
    background-color: transparent;
    color: #c63c79;
    border-radius: 999px;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 700;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3d9e8;
}

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

.cart-item-name {
    font-weight: 600;
    color: #3a2a44;
    margin-bottom: 6px;
}

.cart-item-price {
    font-weight: 700;
    color: #b55fe6;
}

.cart-item-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-item-actions button {
    border: 1px solid #e5c7de;
    background: transparent;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: #4a3150;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.cart-item-actions button:active {
    transform: scale(0.92);
    background-color: rgba(181, 95, 230, 0.05);
}

.cart-item-qty {
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    border: none;
    background: transparent;
    color: #c63c79;
    cursor: pointer;
    font-size: 18px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

.cart-item-remove:active {
    transform: scale(0.9);
}

.cart-overlay.hidden,
.cart-sidebar.hidden {
    display: none;
}

/* Seção Destaques (Fundo Vermelho Sólido) */
.destaques-section {
    background-color: #e63956; /* Vermelho/Rosa escuro do vídeo */
    padding: 60px 40px;
    color: white;
    position: relative;
}

.destaques-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.destaques-title {
    font-size: 32px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.15s ease;
}

.control-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.control-btn:active {
    transform: scale(0.92);
}

.destaques-carousel-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.destaques-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.destaque-card {
    background-color: white;
    color: #333;
    min-width: 250px;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card-image-placeholder {
    background-color: #a3c9a8; /* Cor esverdeada simulando a foto da decoração */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.card-caption {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    background-color: #ffffff;
}

/* Seção Quem Sou Eu */
.quem-sou-eu-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.apresentacao-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    font-weight: bold;
}

.apresentacao-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-family: 'Georgia', serif;
}

/* Seção de Orçamento (Igual à Imagem Fornecida) */
.orcamento-section {
    background: linear-gradient(135deg, #fce4d6 0%, #ebdcf0 100%);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.orcamento-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.orcamento-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.orcamento-header h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.heart-icon {
    font-size: 24px;
}

.orcamento-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus {
    border-color: #a5b4fc;
}

.submit-btn {
    background-color: #7dd3fc;
    color: #0369a1;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
    text-align: center;
}

.submit-btn:hover {
    background-color: #38bdf8;
}

.form-disclaimer {
    font-size: 12px;
    color: #777;
    margin-top: 12px;
    text-align: left;
}

/* Badges inferiores */
.badges-container {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.badge-verde { border: 1px solid #bbf7d0; color: #166534; }
.badge-rosa { border: 1px solid #fbcfe8; color: #9d174d; }
.badge-artesanal { border: 1px solid #fed7aa; color: #9a3412; }

/* Footer / Rodapé Ondulado */
.site-footer {
    background-color: #fbd475; /* Fundo Amarelo Pastel da imagem */
    color: #2b4e54; /* Texto em tom azul escuro/teal */
    position: relative;
    padding: 0 0 30px 0;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-waves {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.footer-waves svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-family: 'Fredoka One', 'Georgia', serif;
    font-weight: bold;
    font-size: 20px;
    color: #2b4e54;
    margin-bottom: 20px;
    text-transform: none;
}

.brand-column .footer-brand-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #1f3f45;
}

.brand-column .footer-brand-subtitle {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 16px;
    color: #436d75;
    margin-top: 10px;
}

.contact-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #436d75;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #436d75;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
    color: #1f3f45;
    transform: translateX(3px);
}

.social-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.instagram-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><radialGradient id='rg' r='150%' cx='30%' cy='107%'><stop stop-color='%23fdf497' offset='0%'/><stop stop-color='%23fdf497' offset='5%'/><stop stop-color='%23fd5949' offset='45%'/><stop stop-color='%23d6249f' offset='60%'/><stop stop-color='%23285AEB' offset='90%'/></radialGradient><rect width='24' height='24' rx='6' fill='url(%23rg)'/><path d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.051.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881z' fill='%23fff'/></svg>");
}

.facebook-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231877F2'><path d='M24 12a12 12 0 10-13.875 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385A12 12 0 0024 12z'/></svg>");
}

.whatsapp-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325D366'><path d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L0 24l6.335-1.662c1.746.953 3.71 1.458 5.705 1.459h.008c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/></svg>");
}

.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0 auto;
    border-top: 1px solid rgba(43, 78, 84, 0.15);
    padding: 20px 20px 0 20px;
    font-size: 12px;
    color: #436d75;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

/* Admin link no footer */
.admin-link {
    margin-top: 8px;
    padding-top: 6px;
}

.admin-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}


/* Estilos da nova página: Quem nós somos */
.quem-somos-body {
    background-color: #bfe5e7; /* Cor de fundo azul claro da imagem */
    color: #2b4e54;
    overflow-x: hidden;
}

.quem-somos-main {
    padding: 60px 40px;
}

.quem-somos-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.quem-somos-text-column {
    flex: 1.2;
    text-align: left;
}

.quem-somos-image-column {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quem-somos-title {
    font-size: 38px;
    font-family: 'Fredoka One', 'Georgia', serif;
    font-weight: bold;
    font-style: italic;
    color: #2b4e54;
    margin-bottom: 30px;
}

.quem-somos-subtitle {
    font-size: 20px;
    font-family: 'Fredoka One', 'Georgia', serif;
    font-weight: bold;
    font-style: italic;
    color: #2b4e54;
    margin-top: 30px;
    margin-bottom: 15px;
}

.quem-somos-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: #3b666e;
    margin-bottom: 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.quem-somos-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.quem-somos-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #3b666e;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.quem-somos-list li::before {
    content: "•";
    color: #2b4e54;
    font-weight: bold;
    font-size: 22px;
    position: absolute;
    left: 0;
    top: -2px;
}

.quem-somos-highlight {
    font-size: 17px;
    font-weight: bold;
    line-height: 1.7;
    color: #2b4e54;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: 25px;
}

.quem-somos-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Voltar ao Topo Floating Button */
.back-to-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #b55fe6;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(181, 95, 230, 0.3);
    z-index: 999;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.back-to-top-btn:hover {
    background-color: #9b3ec2;
    transform: translateY(-3px);
}

.back-to-top-btn:active {
    transform: scale(0.92) translateY(0);
}

.back-to-top-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

/* Responsividade Geral */
@media (max-width: 768px) {
    .header-banner {
        padding: 12px 20px;
    }
    
    .header-banner.solid {
        padding: 10px 20px;
    }
    
    .logo {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .header-actions {
        margin-right: 15px;
    }
    
    .hamburger-menu-btn {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: -6px 0 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 85px 20px 40px 20px;
        gap: 10px;
        z-index: 998;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .navbar.show {
        right: 0;
    }
    
    .navbar a {
        color: #2b4e54;
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
        border-bottom: 1px solid rgba(43, 78, 84, 0.06);
        border-radius: 8px;
    }
    
    .navbar a:hover, .navbar a.active {
        color: #b55fe6;
        background-color: rgba(181, 95, 230, 0.08);
        border-bottom: none;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px 20px 0 20px;
    }
    
    .destaques-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0 10px;
    }
    
    .destaques-title {
        font-size: 26px;
    }
    
    .destaques-section {
        padding: 40px 20px;
    }
    
    .quem-somos-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .quem-somos-text-column {
        width: 100%;
    }
    
    .quem-somos-image-column {
        width: 100%;
    }
    
    .quem-somos-img {
        max-width: 100%;
    }
    
    .orcamento-card {
        padding: 24px 16px;
    }
    
    .orcamento-header h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 17px;
    }
    
    .destaque-card {
        min-width: 220px;
    }
    
    .card-image-placeholder {
        height: 220px;
    }
    
    .badges-container {
        gap: 8px;
    }
    
    .badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Spinner de carregamento para o botão de orçamento */
.submit-btn {
    position: relative;
}

.submit-btn.loading {
    color: transparent !important;
    pointer-events: none;
}

.submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 3px solid rgba(3, 105, 161, 0.3);
    border-radius: 50%;
    border-top-color: #0369a1;
    animation: button-spin 0.8s linear infinite;
}

@keyframes button-spin {
    to { transform: rotate(360deg); }
}

/* Toast/Notification Container Glassmorphic */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    width: calc(100vw - 48px);
}

.toast-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(181, 95, 230, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.toast-card.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-icon {
    font-size: 20px;
}

.toast-title {
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 16px;
    color: #2b4e54;
}

.toast-body {
    font-size: 14px;
    line-height: 1.5;
    color: #436d75;
}

.toast-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.toast-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.toast-btn-primary {
    background-color: #b55fe6;
    color: white;
    border: none;
}

.toast-btn-primary:hover {
    background-color: #9d4cd0;
}

.toast-btn-secondary {
    background-color: rgba(43, 78, 84, 0.1);
    color: #2b4e54;
    border: none;
}

.toast-btn-secondary:hover {
    background-color: rgba(43, 78, 84, 0.15);
}

/* Carrinho: Calculadora de CEP e Formulário de Checkout */
.cart-shipping-section {
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px dashed #e5c7de;
}

.cart-shipping-title {
    font-size: 14px;
    font-weight: 600;
    color: #3a2a44;
    margin-bottom: 8px;
}

.cart-cep-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.cart-cep-input-group input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e5c7de;
    border-radius: 8px;
    outline: none;
    font-size: 13px;
    color: #4a3150;
}

.cart-cep-input-group input:focus {
    border-color: #b55fe6;
}

.cart-cep-btn {
    background-color: #b55fe6;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.2s;
}

.cart-cep-btn:hover {
    background-color: #9b3ec2;
}

.cart-shipping-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.shipping-option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #e5c7de;
    border-radius: 8px;
    background-color: #faf5fb;
    cursor: pointer;
    transition: all 0.2s;
}

.shipping-option-item:hover, .shipping-option-item.selected {
    border-color: #b55fe6;
    background-color: rgba(181, 95, 230, 0.05);
}

.shipping-option-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4a3150;
    font-weight: 500;
}

.shipping-option-right {
    font-weight: 700;
    color: #c63c79;
    font-size: 13px;
}

.checkout-client-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e5c7de;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.checkout-client-form.hidden {
    display: none !important;
}

.checkout-client-form h4 {
    font-size: 14px;
    font-weight: 600;
    color: #3a2a44;
    margin-bottom: 4px;
}

.checkout-client-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5c7de;
    border-radius: 8px;
    outline: none;
    font-size: 13px;
    color: #4a3150;
}

.checkout-client-form input:focus {
    border-color: #b55fe6;
}

.cart-sidebar-total {
    margin-bottom: 12px;
}

