/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Garantir compatibilidade com diferentes navegadores */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Forçar box-sizing para todos os elementos */
*, *::before, *::after {
    box-sizing: border-box !important;
}

html {
    background-color: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header - Base */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(33, 54, 102, 0.1);
}

/* Header - Páginas específicas */
.header-index,
.header-placadehomenagem,
.header-trofeus,
.header-corporativo,
.header-diplomas,
.header-medalhas,
.header-personalizados,
.header-pinsebottons {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(33, 54, 102, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: #213666;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo span {
    color: #F57F31;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #213666;
}

.cta-button {
    background: #213666;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #1a2d55;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 54, 102, 0.3);
}

/* CTA Button - Páginas específicas */
.cta-button-index,
.cta-button-placadehomenagem,
.cta-button-trofeus,
.cta-button-corporativo,
.cta-button-diplomas,
.cta-button-medalhas,
.cta-button-personalizados,
.cta-button-pinsebottons {
    background: #213666;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-index:hover,
.cta-button-placadehomenagem:hover,
.cta-button-trofeus:hover,
.cta-button-corporativo:hover,
.cta-button-diplomas:hover,
.cta-button-medalhas:hover,
.cta-button-personalizados:hover,
.cta-button-pinsebottons:hover {
    background: #1a2d55;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 54, 102, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #213666;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(33, 54, 102, 0.15);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu a:hover {
    color: #213666;
}

.mobile-cta-button {
    background: #213666;
    color: white !important;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mobile-cta-button:hover {
    background: #1a2d55;
}

/* Mobile Menu Toggle - Páginas específicas */
.mobile-menu-toggle-index,
.mobile-menu-toggle-placadehomenagem,
.mobile-menu-toggle-trofeus,
.mobile-menu-toggle-corporativo,
.mobile-menu-toggle-diplomas,
.mobile-menu-toggle-medalhas,
.mobile-menu-toggle-personalizados,
.mobile-menu-toggle-pinsebottons {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle-index span,
.mobile-menu-toggle-placadehomenagem span,
.mobile-menu-toggle-trofeus span,
.mobile-menu-toggle-corporativo span,
.mobile-menu-toggle-diplomas span,
.mobile-menu-toggle-medalhas span,
.mobile-menu-toggle-personalizados span,
.mobile-menu-toggle-pinsebottons span {
    width: 25px;
    height: 3px;
    background: #213666;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle-index.active span:nth-child(1),
.mobile-menu-toggle-placadehomenagem.active span:nth-child(1),
.mobile-menu-toggle-trofeus.active span:nth-child(1),
.mobile-menu-toggle-corporativo.active span:nth-child(1),
.mobile-menu-toggle-diplomas.active span:nth-child(1),
.mobile-menu-toggle-medalhas.active span:nth-child(1),
.mobile-menu-toggle-personalizados.active span:nth-child(1),
.mobile-menu-toggle-pinsebottons.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle-index.active span:nth-child(2),
.mobile-menu-toggle-placadehomenagem.active span:nth-child(2),
.mobile-menu-toggle-trofeus.active span:nth-child(2),
.mobile-menu-toggle-corporativo.active span:nth-child(2),
.mobile-menu-toggle-diplomas.active span:nth-child(2),
.mobile-menu-toggle-medalhas.active span:nth-child(2),
.mobile-menu-toggle-personalizados.active span:nth-child(2),
.mobile-menu-toggle-pinsebottons.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle-index.active span:nth-child(3),
.mobile-menu-toggle-placadehomenagem.active span:nth-child(3),
.mobile-menu-toggle-trofeus.active span:nth-child(3),
.mobile-menu-toggle-corporativo.active span:nth-child(3),
.mobile-menu-toggle-diplomas.active span:nth-child(3),
.mobile-menu-toggle-medalhas.active span:nth-child(3),
.mobile-menu-toggle-personalizados.active span:nth-child(3),
.mobile-menu-toggle-pinsebottons.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu - Páginas específicas */
.mobile-menu-index,
.mobile-menu-placadehomenagem,
.mobile-menu-trofeus,
.mobile-menu-corporativo,
.mobile-menu-diplomas,
.mobile-menu-medalhas,
.mobile-menu-personalizados,
.mobile-menu-pinsebottons {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(33, 54, 102, 0.15);
    z-index: 999;
}

.mobile-menu-index.active,
.mobile-menu-placadehomenagem.active,
.mobile-menu-trofeus.active,
.mobile-menu-corporativo.active,
.mobile-menu-diplomas.active,
.mobile-menu-medalhas.active,
.mobile-menu-personalizados.active,
.mobile-menu-pinsebottons.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-cta-button-index,
.mobile-cta-button-placadehomenagem,
.mobile-cta-button-trofeus,
.mobile-cta-button-corporativo,
.mobile-cta-button-diplomas,
.mobile-cta-button-medalhas,
.mobile-cta-button-personalizados,
.mobile-cta-button-pinsebottons {
    background: #213666;
    color: white !important;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mobile-cta-button-index:hover,
.mobile-cta-button-placadehomenagem:hover,
.mobile-cta-button-trofeus:hover,
.mobile-cta-button-corporativo:hover,
.mobile-cta-button-diplomas:hover,
.mobile-cta-button-medalhas:hover,
.mobile-cta-button-personalizados:hover,
.mobile-cta-button-pinsebottons:hover {
    background: #1a2d55;
}

.desktop-only {
    display: inline-block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    min-height: calc(100vh - 160px);
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    z-index: 2;
    text-align: left;
}

.hero-visual {
    /* Empty space for visual balance */
    position: relative;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(52, 152, 219, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-decoration: none;
}

.hero-cta i {
    font-size: 22px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #5dade2;
    margin-bottom: 8px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.stat-label {
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}



/* Produtos Section */
.produtos-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.produtos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    white-space: nowrap;
    text-align: center;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.produto-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1;
}

.produto-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.produto-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.produto-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.produto-item:hover .produto-image img {
    transform: scale(1.1);
}

.produto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.produto-item:hover .produto-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    padding: 40px 25px 25px;
}

.produto-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.produtos-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.btn-primary,
.btn-secondary {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #2c3e50;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

.btn-primary i,
.btn-secondary i {
    font-size: 1.2rem;
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
    background: white;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sobre h2 {
    font-size: 40px;
    font-weight: 700;
    color: #213666;
    margin-bottom: 30px;
}

.sobre p.section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

.produtos-description {
    white-space: nowrap;
}

.diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.diferencial {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9ff;
    border-radius: 12px;
}

.diferencial-icon {
    color: #F57F31;
    font-weight: bold;
    font-size: 18px;
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background: #213666;
    color: white;
}

.contato .section-title {
    color: white;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #F57F31;
}

.contato-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

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

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

.contato-form input,
.contato-form textarea {
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #F57F31;
    background: rgba(255, 255, 255, 0.15);
}

.form-submit {
    background: #F57F31;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #e06b1f;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a2d55;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo h3 {
    color: white;
    font-size: 24px;
    margin-bottom: -5px;
}

.footer-logo span {
    color: #F57F31;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        padding: 80px 40px;
    }

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

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Produtos Tablet */
    .produtos-section {
        padding: 80px 40px;
    }

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

    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }

    .produtos-actions {
        gap: 20px;
    }

    .btn-primary,
    .btn-secondary {
        min-width: 200px;
        padding: 16px 30px;
    }

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

    .contato-content {
        gap: 40px;
    }
}

/* Botão Flutuante WhatsApp - Base */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
}

/* Botão Flutuante WhatsApp - Páginas específicas */
.whatsapp-float-index,
.whatsapp-float-placadehomenagem,
.whatsapp-float-trofeus,
.whatsapp-float-corporativo,
.whatsapp-float-diplomas,
.whatsapp-float-medalhas,
.whatsapp-float-personalizados,
.whatsapp-float-pinsebottons,
.whatsapp-float-produtos {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float-btn-index,
.whatsapp-float-btn-placadehomenagem,
.whatsapp-float-btn-trofeus,
.whatsapp-float-btn-corporativo,
.whatsapp-float-btn-diplomas,
.whatsapp-float-btn-medalhas,
.whatsapp-float-btn-personalizados,
.whatsapp-float-btn-pinsebottons,
.whatsapp-float-btn-produtos {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float-btn-index:hover,
.whatsapp-float-btn-placadehomenagem:hover,
.whatsapp-float-btn-trofeus:hover,
.whatsapp-float-btn-corporativo:hover,
.whatsapp-float-btn-diplomas:hover,
.whatsapp-float-btn-medalhas:hover,
.whatsapp-float-btn-personalizados:hover,
.whatsapp-float-btn-pinsebottons:hover,
.whatsapp-float-btn-produtos:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn-index svg,
.whatsapp-float-btn-placadehomenagem svg,
.whatsapp-float-btn-trofeus svg,
.whatsapp-float-btn-corporativo svg,
.whatsapp-float-btn-diplomas svg,
.whatsapp-float-btn-medalhas svg,
.whatsapp-float-btn-personalizados svg,
.whatsapp-float-btn-pinsebottons svg,
.whatsapp-float-btn-produtos svg {
    width: 28px;
    height: 28px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }

    /* Produtos responsividade */
    .produtos-section {
        padding: 60px 20px;
    }

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

    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .produto-item {
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }

    .produtos-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-width: auto;
        padding: 16px 25px;
        font-size: 1rem;
    }

    .produto-overlay {
        padding: 30px 15px 15px;
        background: linear-gradient(transparent, rgba(0,0,0,0.3)) !important;
    }
    
    .produto-item:hover .produto-overlay {
        background: linear-gradient(transparent, rgba(0,0,0,0.4)) !important;
    }
    
    /* Labels dos produtos responsivos */
    .produto-label {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.65rem;
        border-radius: 15px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0 40px 0;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .produto-item {
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
    
    .produto-overlay {
        background: linear-gradient(transparent, rgba(0,0,0,0.25)) !important;
    }
    
    .produto-item:hover .produto-overlay {
        background: linear-gradient(transparent, rgba(0,0,0,0.35)) !important;
    }



    .hero-carousel {
        order: 2;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
        margin-top: 30px;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 25px;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .hero-cta {
        padding: 16px 32px;
        font-size: 16px;
        margin-bottom: 40px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .carousel-container {
        max-width: 280px;
    }
    
    
    
    .sobre {
        padding: 60px 0;
    }
    
    .sobre-content {
        padding: 0 20px;
    }
    
    .sobre p {
        font-size: 16px;
    }
    
    .diferenciais {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .diferencial {
        padding: 12px;
        font-size: 14px;
    }
    
    .contato {
        padding: 60px 0;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-info {
        text-align: center;
    }
    
    .contato-info h3 {
        font-size: 24px;
    }
    
    .contato-info p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .sobre h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo span {
        font-size: 10px;
    }
    
    .hero-container {
        padding: 0 15px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 15px;
        margin: 0 auto 35px auto;
        display: block;
        width: fit-content;
    }
    
    .carousel-container {
        max-width: 250px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .sobre h2 {
        font-size: 24px;
    }
    
    .produto-card {
        aspect-ratio: 1 !important;
        height: auto !important;
    }
    
    .produto-icon {
        font-size: 40px;
    }
    
    .mobile-nav-menu a {
        font-size: 16px;
        padding: 10px 0;
    }
    
    /* Labels dos produtos para telas muito pequenas */
    .produto-label {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 0.6rem;
        border-radius: 12px;
        letter-spacing: 0.2px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }
    
    .mobile-cta-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}



/* Sobre a Empresa Section */
.sobre-empresa {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.sobre-empresa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

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

.sobre-header {
    text-align: center;
    margin-bottom: 60px;
}

.sobre-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.sobre-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.sobre-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    white-space: nowrap;
}

.credibilidade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.credibilidade-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.credibilidade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.credibilidade-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.credibilidade-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #0056b3, #004085);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Contato e Localização Section */
.contato-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #dee2e6 50%, transparent 100%);
}

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

.contato-header {
    text-align: center;
    margin-bottom: 60px;
}

.contato-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.contato-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #25d366, #128c7e);
    border-radius: 2px;
}

.contato-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    white-space: nowrap;
    text-align: center !important;
}

h3.contato-subtitle {
    text-align: center !important;
    margin: 0 auto;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Informações de Contato */
.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contato-info-left {
    text-align: left;
    max-width: 600px;
    margin: 0;
    padding: 30px 20px;
}

.contact-item-left {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    font-size: 1.1rem;
    color: #495057;
    margin: 0 0 10px 0;
    font-weight: 500;
    line-height: 1.4;
}

.call-btn {
    background: #007bff;
    color: white !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.call-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
    color: white !important;
}

.whatsapp-link {
    background: #25d366;
    color: white !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 5px;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    color: white !important;
}

.contato-info-simple {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
}

.contact-item-simple {
    margin-bottom: 25px;
    padding: 15px 0;
}

.contact-item-simple h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-simple p {
    font-size: 1.1rem;
    color: #495057;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.contact-item-simple a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-simple a:hover {
    color: #007bff;
}

.whatsapp-link-simple {
    background: #25d366;
    color: white !important;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
}

.whatsapp-link-simple:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    color: white !important;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    text-align: left;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e9ecef;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.2rem;
    color: #495057;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.whatsapp-card {
    border-color: #25d366;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
}

.whatsapp-card:hover {
    border-color: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 12px;
    display: inline-block;
    text-align: center;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Formulário de Contato */
.contato-form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #f8f9fa;
}

.contato-form-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Mapa */
.mapa-container {
    text-align: center;
    margin-top: 40px;
}

.mapa-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
}

.mapa-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Mapa Full Width */
.mapa-container-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 40px;
}

.mapa-wrapper-full {
    width: 100%;
    overflow: hidden;
}

.mapa-wrapper-full iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.endereco-info {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: inline-block;
    border: 2px solid #f8f9fa;
}

.endereco-info p {
    margin: 0;
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

/* Mobile responsiveness for Sobre section */
@media (max-width: 768px) {
    .sobre-empresa {
        padding: 60px 20px;
    }
    
    .sobre-title {
        font-size: 2rem;
    }
    
    .sobre-subtitle {
        font-size: 1.1rem;
        white-space: normal;
    }
    
    .credibilidade-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .credibilidade-card {
        padding: 30px 25px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    /* Contato responsivo */
    .contato-section {
        padding: 60px 20px;
    }
    
    .contato-title {
        font-size: 2rem;
    }
    
    .contato-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        white-space: normal;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .produtos-description {
        white-space: normal;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contato-info-left {
        padding: 25px 15px;
        text-align: center;
    }
    
    .contact-item-left {
        margin-bottom: 25px;
        padding: 15px 0;
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        font-size: 1.8rem;
        min-width: 45px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
    }
    
    .call-btn,
    .whatsapp-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .contato-info-simple {
        padding: 25px 15px;
    }
    
    .contact-item-simple {
        margin-bottom: 20px;
        padding: 12px 0;
    }
    
    .contact-item-simple h3 {
        font-size: 1.1rem;
    }
    
    .contact-item-simple p {
        font-size: 1rem;
    }
    
    .whatsapp-link-simple {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .info-card {
        text-align: center;
    }
    
    .contato-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mapa-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contato-section {
        padding: 40px 15px;
    }
    
    .contato-title {
        font-size: 1.8rem;
    }
    
    .contato-subtitle {
        font-size: 0.9rem;
        white-space: normal;
    }
    
    .contato-info-left {
        padding: 20px 10px;
    }
    
    .contact-item-left {
        margin-bottom: 20px;
        padding: 12px 0;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        min-width: auto;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .call-btn,
    .whatsapp-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .contato-info-simple {
        padding: 20px 10px;
    }
    
    .contact-item-simple {
        margin-bottom: 18px;
        padding: 10px 0;
    }
    
    .contact-item-simple h3 {
        font-size: 1rem;
    }
    
    .contact-item-simple p {
        font-size: 0.95rem;
    }
    
    .whatsapp-link-simple {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .contato-form-container {
        padding: 25px 15px;
    }
    
    .contato-form-container h3 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .mapa-container h3 {
        font-size: 1.3rem;
    }
    
    .mapa-wrapper iframe {
        height: 250px;
    }
    
    .endereco-info {
        padding: 15px;
    }
    
    .endereco-info p {
         font-size: 0.9rem;
     }
 }

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333333;
    padding: 60px 0 0;
    position: relative;
    box-shadow: 0 -2px 20px rgba(33, 54, 102, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ffffff20 50%, transparent 100%);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    justify-items: center;
    text-align: center;
}

/* Footer Brand */
.footer-brand {
    max-width: 350px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(33, 54, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #213666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #213666;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #F57F31;
    border-radius: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #213666;
    padding-left: 8px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #F57F31;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 4px;
}

/* Footer Contact */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #666666;
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: #F57F31;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: #666666;
    font-size: 0.9rem;
}

.footer-tagline {
    margin-top: 8px !important;
    font-size: 0.8rem !important;
    color: #999999 !important;
    font-style: italic;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: left;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    .footer-links a,
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .footer-tagline {
        font-size: 0.75rem !important;
    }
}

/* ===== PÁGINA DE PRODUTOS ===== */

/* Filtros de Categoria */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 50px 0;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    z-index: 10;
}

.filter-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 5;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
}

.filter-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.filter-btn.active:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
}

/* Grid de Produtos */
.produtos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.produto-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.produto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.produto-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-overlay {
    transform: translateY(0);
}

.produto-overlay h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.produto-category {
    font-size: 0.85rem;
    opacity: 0.9;
    background: rgba(0, 123, 255, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Animações de Filtro */
.produto-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.produto-card.visible {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Ações dos Produtos */
.produtos-actions {
    text-align: center;
    margin: 50px 0;
}

.produtos-actions .btn-primary {
    background: #007bff;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.produtos-actions .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Responsividade para Produtos */
@media (max-width: 768px) {
    .category-filters {
        display: flex !important;
        flex-wrap: wrap;
        gap: 10px;
        margin: 30px 0 40px 0;
        padding: 0 15px;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 999;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-width: 100px;
        display: inline-block !important;
        background: #ffffff !important;
        border: 2px solid #e9ecef !important;
        color: #495057 !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 998;
    }
    
    .produtos-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }
    
    .produto-overlay {
        padding: 15px;
        background: linear-gradient(transparent, rgba(0,0,0,0.3)) !important;
    }
    
    .produto-item:hover .produto-overlay {
        background: linear-gradient(transparent, rgba(0,0,0,0.4)) !important;
    }
    
    .produto-overlay h3 {
        font-size: 1rem;
    }
    
    .produto-category {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .category-filters {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 999;
        margin: 20px 0 30px 0;
        padding: 0 10px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        display: block !important;
        background: #ffffff !important;
        border: 2px solid #e9ecef !important;
        color: #495057 !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 998;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .produtos-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }
}