* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

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

/* Barra superior */
.top-bar {
    background: #00A896;
    padding: 8px 0;
    color: white;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
}

.top-bar .social-icons a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.top-bar .contact-info a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-left: 20px;
}

.top-bar .contact-info a:last-child {
    background: #1E4D8C;
    padding: 5px 15px;
    border-radius: 4px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.top-bar a:last-child {
    margin-right: 0;
}

.top-bar i {
    margin-right: 8px;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    font-size: 16px;
}

.phone-button {
    background-color: #1E4D8C;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background-color: #153C70;
    transform: translateY(-2px);
}

/* Header principal */
header {
    background: white;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.logo {
    width: auto;
    margin-right: 50px;
}

.logo img {
    height: 70px;
    width: auto;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00A896;
}

.header-icons {
    display: none;
}

main {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        display: none;
    }

    /* Header Mobile */
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: white !important;
        z-index: 999 !important;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    /* Logo */
    .logo {
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .logo img {
        width: 140px;
        height: auto;
        display: block;
    }

    /* Menu Toggle */
    .menu-toggle {
        display: block;
        font-size: 24px;
        color: #1E4D8C;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    /* Menu Mobile */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 1101 !important;
        transition: left 0.3s;
        overflow-y: auto;
        display: block;
    }

    nav:not(.active) {
        left: -80vw;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        padding: 15px 0;
        display: block;
        font-size: 16px;
        color: #333;
    }

    /* Ajuste no main para compensar o header fixo */
    main {
        margin-top: 80px !important;
        padding-top: 20px;
    }

    /* Menu Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 80vw;
        width: 20vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 1000 !important;
        display: none;
    }

    .menu-overlay.active {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, #1E4D8C 0%, #153C70 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.hero-content h2 {
    font-size: 36px;
    color: #00A896;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    background: #1E4D8C;
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(33,150,243,0.08);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #153C70;
    transform: translateY(-2px) scale(1.03);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #1E4D8C;
}

.cta-button.whatsapp {
    background-color: #25D366;
}

.cta-button.whatsapp:hover {
    background-color: #20bd5a;
}

.cta-button i {
    font-size: 18px;
}

.welcome-badge {
    position: absolute;
    right: 15px;
    top: 50px;
    background-color: #00A896;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
}

.badge-content h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.badge-content p {
    color: white;
    font-size: 16px;
    line-height: 1.4;
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background-color: #fff;
}

.featured-products h2 {
    color: #1E4D8C;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.featured-products .subtitle {
    color: #00A3FF;
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

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

.featured-products .product-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.featured-products .product-card .product-button {
    margin-top: auto;
    margin-bottom: 0;
}

.featured-products .product-card img {
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    margin-top: 30px;
}

.featured-products .product-card h3 {
    margin: 15px 0 10px 0;
    min-height: 40px;
    line-height: 1.2;
}

.featured-products .product-card .rating {
    margin: 10px 0 15px 0;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header fixo */
    header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: white !important;
        z-index: 998 !important;
        padding: 15px 0;
        transform: none !important;
        -webkit-transform: none !important;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
        will-change: transform;
        position: sticky;
        -webkit-position: sticky;
        -webkit-overflow-scrolling: touch;
    }

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

    /* Logo */
    .logo {
        margin: 0;
        padding: 0;
        z-index: 999;
        position: relative;
    }

    .logo img {
        width: 120px;
        height: auto;
        display: block;
    }

    /* Botão do menu */
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        cursor: pointer;
    }

    /* Menu de navegação */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 1101 !important;
        transition: left 0.3s;
        overflow-y: auto;
        display: block;
    }

    nav:not(.active) {
        left: -80vw;
    }

    nav.active {
        left: 0;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 80vw;
        width: 20vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 1000 !important;
        display: none;
    }

    .menu-overlay.active {
        display: block;
    }

    .menu-open {
        overflow: hidden;
    }

    /* Campo de pesquisa */
    .search-box {
        display: block;
        margin: 20px 0;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .search-box input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    /* Links do menu */
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        color: #333;
        text-decoration: none;
        transition: 0.3s;
    }

    nav ul li a:hover {
        background: #f5f5f5;
    }

    /* Setas para submenus */
    .has-submenu {
        position: relative;
    }

    .has-submenu .menu-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 15px;
        position: relative;
        -webkit-appearance: none;
        appearance: none;
    }

    .has-submenu .menu-item a {
        flex: 1;
        text-decoration: none;
        color: #333;
        padding: 12px 15px;
        display: block;
        -webkit-appearance: none;
        appearance: none;
    }

    .submenu-arrow {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
    }

    .submenu-arrow::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 20px;
        color: #333;
        transition: transform 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
    }

    .has-submenu.submenu-active .submenu-arrow::after {
        transform: rotate(180deg);
    }

    /* Remover qualquer outro ícone ou estilo padrão do Safari */
    .has-submenu .menu-item::-webkit-details-marker,
    .has-submenu .menu-item::marker,
    .has-submenu::-webkit-details-marker,
    .has-submenu::marker {
        display: none;
        -webkit-appearance: none;
        appearance: none;
    }

    .has-submenu summary::-webkit-details-marker,
    .has-submenu summary::marker {
        display: none;
    }

    .submenu {
        display: none;
        padding-left: 20px;
        background: #f8f9fa;
        margin-left: 15px;
        border-left: 2px solid #00A896;
    }

    .submenu-active .submenu {
        display: block;
    }

    /* Redes sociais no menu */
    nav .social-icons {
        display: none;
    }

    /* Telefone no menu */
    nav .phone-number {
        display: none;
    }

    .header-icons {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        margin: 5px 0;
        padding: 15px 20px;
        font-size: 16px;
    }

    .product-card {
        margin: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .product-card img {
        width: 80%;
        margin: 0 auto;
    }

    .product-card h3 {
        font-size: 18px;
    }

    .whatsapp-button {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button a {
        padding: 12px;
        font-size: 14px;
    }

    .footer-main {
        padding: 30px 0;
    }

    .footer-nav {
        padding: 15px 0;
    }

    .footer-nav a {
        padding: 10px;
        display: block;
    }

    .breadcrumb {
        padding: 10px 15px;
        font-size: 14px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .welcome-badge {
        position: relative;
        right: auto;
        top: auto;
        margin: 20px auto;
    }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .footer-main .container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }

    .product-detail .container {
        flex-direction: column;
    }

    .product-images {
        width: 100%;
        margin-bottom: 30px;
    }

    .product-info {
        width: 100%;
        padding: 0 15px;
    }

    .customization-options {
        flex-direction: column;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .contact-info a {
        font-size: 14px;
        justify-content: center;
        width: 100%;
    }

    .phone-button {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 16px;
    }

    .filters-section .filter-group {
        position: -webkit-sticky;
        position: sticky;
        top: 70px;
        z-index: 9999;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-radius: 0 0 10px 10px;
        margin-bottom: 10px;
    }
}

/* Ajustes específicos para iPhone */
@supports (-webkit-touch-callout: none) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: -webkit-fill-available;
        max-height: 100vh;
        background: white;
        z-index: 1001;
        transition: all 0.3s ease;
        padding-top: 80px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-100%);
    }

    nav.active {
        left: 0;
        transform: translateX(0);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: -webkit-fill-available;
        max-height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .menu-toggle {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    nav a {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    body.menu-open {
        position: fixed;
        width: 100%;
        height: 100vh;
        height: -webkit-fill-available;
        overflow: hidden;
    }
}

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

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .cta-button {
        width: 100%;
        margin-bottom: 10px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        max-width: 100%;
        height: auto;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .product-badge {
        font-size: 12px;
        padding: 4px 8px;
    }

    .products-grid {
        gap: 15px;
        margin: 20px 0;
    }

    .footer-main .container > * {
        margin-bottom: 20px;
    }

    .social-icons a {
        font-size: 20px;
        margin: 0 8px;
    }
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    margin-top: 30px;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    border-radius: 6px;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
}

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

.product-card h3 {
    color: #1E4D8C;
    font-size: 18px;
    margin: 15px 0 10px 0;
    min-height: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E4D8C;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.product-badge.novidade {
    background-color: #1E4D8C;
}

.rating {
    color: #FFD700;
    font-size: 16px;
    margin: 10px 0 15px 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

/* Footer */
footer {
    background-color: white;
    margin-top: 50px;
    color: #333;
}

.footer-main {
    padding: 50px 0;
}

.footer-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

.footer-logo-square {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-square img {
    width: 85%;
    height: auto;
    object-fit: contain;
}

.footer-main h3 {
    color: #333;
    margin-bottom: 15px;
}

.footer-main p {
    color: #333;
    line-height: 1.6;
}

.footer-main a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-main a:hover {
    color: #00A896;
}

.footer-logo-section .social-icons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.footer-logo-section .social-icons a {
    color: #1E4D8C;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.footer-logo-section .social-icons a:hover {
    color: #00A896;
    transform: translateY(-2px);
}

.footer-nav {
    background-color: white;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #00A896;
}

.footer-bottom {
    background-color: white;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: #333;
    font-size: 14px;
    text-align: center;
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .products-grid {
    grid-template-columns: 1fr;
        gap: 15px;
    }
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .logo img {
    width: 120px;
    height: auto;
  }
  .top-bar {
    display: none;
  }
  .product-detail .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .product-images, .product-info {
    width: 100%;
    padding: 0;
  }
  .footer-main .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-section {
    text-align: center;
  }
  .footer-logo-section {
    align-items: center;
  }
  .whatsapp-button {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 4px;
  }
  .logo img {
    width: 90px;
  }
  .product-card {
    padding: 10px;
  }
  .product-badge {
    font-size: 12px;
    padding: 4px 8px;
  }
  .footer-main .container > * {
    margin-bottom: 20px;
  }
  .social-icons a {
    font-size: 20px;
    margin: 0 8px;
  }
}

/* FIM DOS AJUSTES DE RESPONSIVIDADE */

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 50px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #1E4D8C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #00A896;
    transform: translateY(-3px);
}

/* Customize Section */
.customize-section {
    background-color: #00A896;
    padding: 80px 0;
    position: relative;
    border-radius: 100px 0 0 0;
    overflow: hidden;
}

.customize-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.customize-content {
    flex: 1;
    color: white;
    max-width: 600px;
    padding-right: 50px;
}

.customize-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.customize-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: normal;
    color: white;
}

.customize-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
    opacity: 0.9;
}

.saiba-mais-btn {
    display: inline-block;
    background-color: #1E4D8C;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.saiba-mais-btn:hover {
    background-color: #153C70;
    transform: translateY(-2px);
}

.customize-slider {
    flex: 1;
    position: relative;
    max-width: 500px;
    height: 500px;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    cursor: pointer;
}

.slider-image.active {
    opacity: 1;
    visibility: visible;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.slider-image:hover img {
    transform: scale(1.2);
}

.customization-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #1E4D8C;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #1E4D8C;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background-color: #1E4D8C;
    color: white;
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #1E4D8C;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #1E4D8C;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .customize-section .container {
        flex-direction: column;
        text-align: center;
    }

    .customize-content {
        padding-right: 0;
        max-width: 100%;
    }

    .customize-slider {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Ajustando cores dos cards de benefícios */
.benefit-card {
    border: 2px solid var(--secondary-color);
    background: white;
}

.benefit-icon {
    color: var(--primary-color);
}

/* Animação de Pulsação para o WhatsApp */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Botão WhatsApp Fixo */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
    animation: none;
}

.whatsapp-button i {
    font-size: 32px;
}

/* Botão Mais Modelos */
.more-models {
    text-align: center;
    padding: 40px 0;
    background-color: white;
}

.more-models-btn {
    display: inline-block;
    background-color: #1E4D8C;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
}

.more-models-btn:hover {
    background-color: #00A896;
    transform: translateY(-2px);
}

/* Logo inferior */
.bottom-logo {
    text-align: center;
    padding: 40px 0;
    background-color: white;
}

.bottom-logo img {
    height: auto;
    width: 120px;
    object-fit: contain;
}

/* Logo Section */
.logo-section {
    background-color: #1E4D8C;
    padding: 60px 0;
    text-align: center;
}

.logo-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-square {
    background-color: white;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.logo-square img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-section .social-icons {
    display: flex;
    gap: 20px;
}

.logo-section .social-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-section .social-icons a:hover {
    color: #00A896;
}

.footer-info {
    display: flex;
    justify-content: flex-end;
    gap: 100px;
    margin-top: 20px;
}

.footer-section {
    flex: 0 1 auto;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.footer-section p {
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}

/* Modal de Zoom */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

.close-modal {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #bbb;
    transform: scale(1.1);
}

/* Página de Mochilas e Acessórios */
.page-banner {
    background: linear-gradient(90deg, #1E4D8C 0%, #153C70 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.9;
}

.filters-section {
    padding: 40px 0;
}

.filters-section .container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.filter-group {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-group h3 {
    color: #1E4D8C;
    margin-bottom: 15px;
    font-size: 18px;
}

.filter-group ul {
    list-style: none;
}

.filter-group ul li {
    margin-bottom: 10px;
}

.filter-group ul a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.filter-group ul a:hover,
.filter-group ul a.active {
    color: #00A896;
}

.products-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-button {
    display: inline-block;
    background-color: #1E4D8C;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.product-card .product-button {
    margin-top: auto;
    margin-bottom: 0;
}

.product-button:hover {
    background-color: #00A896;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .filters-section .container {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .filters-section .container {
        grid-template-columns: 1fr;
    }

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

    .page-banner h1 {
        font-size: 32px;
    }

    .page-banner p {
        font-size: 16px;
    }
}

/* Ajuste no menu para página ativa */
nav ul a.active {
    color: #00A896;
    font-weight: bold;
}

/* Estilos para a página de detalhes do produto */
.product-detail {
    padding: 40px 0;
}

.product-detail .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-images {
    position: relative;
}

.product-images .main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-images .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-badge.large {
    font-size: 1.2em;
    padding: 10px 20px;
}

.product-info h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.rating.large {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.rating.large span {
    margin-left: 10px;
    color: #666;
    font-size: 0.8em;
}

.product-description {
    margin: 30px 0;
}

.product-description h2 {
    color: #333;
    margin-bottom: 15px;
}

.product-description h3 {
    color: #444;
    margin: 20px 0 10px;
}

.product-description p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.product-description ul {
    list-style: none;
    padding: 0;
}

.product-description ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.product-description ul li:before {
    content: "•";
    color: #1a4789;
    position: absolute;
    left: 0;
}

.product-customization {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.customization-options {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.customization-options .option {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    flex: 1;
}

.customization-options .option i {
    font-size: 24px;
    color: #1a4789;
    margin-bottom: 8px;
    display: block;
}

.cta-buttons {
    margin-top: 30px;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-cta:hover {
    background: #128C7E;
}

/* Estilos para Produtos Relacionados */
.related-products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 28px;
    font-weight: 600;
}

.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.related-products .product-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.related-products .product-card .product-button {
    margin-top: auto;
    margin-bottom: 0;
}

.related-products .product-card img {
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    margin-top: 30px;
}

.related-products .product-card h3 {
    margin: 15px 0 10px 0;
    min-height: 40px;
    line-height: 1.2;
}

.related-products .product-card .rating {
    margin: 10px 0 15px 0;
}

@media (max-width: 768px) {
    .related-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    }

@media (max-width: 480px) {
    .related-products .products-grid {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
    transition: all 0.3s ease;
}

.filter-group a {
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #333;
}

.filter-group a:hover {
    color: #007bff;
    transform: translateX(5px);
}

/* Estilos da Paginação */
.pagination {
    padding: 2rem 0;
    background-color: #f8f9fa;
    margin-top: 2rem;
    display: none;
}

.pagination.visible {
    display: block;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background-color: white;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

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

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.current-page {
    font-weight: bold;
    color: #007bff;
}

.breadcrumb {
    padding: 1rem 0;
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb > div > *:not(:last-child)::after {
    content: ">";
    margin: 0 0.5rem;
    color: #999;
}

/* Melhorias na performance de scroll */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }

    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Evita zoom indesejado em inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 16px;
    }
}

/* Elementos que devem aparecer apenas no menu mobile */
.menu-toggle {
    display: none;
}

.search-box {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        cursor: pointer;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 1101 !important;
        transition: left 0.3s;
        overflow-y: auto;
        display: block;
    }

    nav:not(.active) {
        left: -80vw;
    }

    nav.active {
        left: 0;
    }

    .search-box {
        display: block;
        margin: 20px 0;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    nav .social-icons {
        display: none;
    }

    nav .phone-number {
        display: none;
    }

    .top-bar .social-icons,
    .top-bar .contact-info {
        display: flex;
    }
}

.menu-social-icons,
.menu-phone {
    display: none !important;
}

/* FILTRO MOBILE */
@media (max-width: 768px) {
  .mobile-filter-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .filter-btn {
    background: #1E4D8C;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
  }
  .filter-btn:hover {
    background: #00A896;
  }
  .filter-modal {
    display: none !important;
    position: fixed;
    top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.4); justify-content:center; align-items:center; z-index:9999;
  }
  .filter-modal.active {
    display: flex !important;
  }
  .filter-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px 20px 20px;
    min-width: 80vw;
    max-width: 95vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
  }
  .filter-modal-content h3 {
    margin-bottom: 18px;
    color: #1E4D8C;
    font-size: 22px;
  }
  .filter-categories {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .filter-categories li {
    margin-bottom: 12px;
  }
  .filter-categories a {
    color: #1E4D8C;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .filter-categories a:hover {
    color: #00A896;
  }
  .close-modal {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 32px;
    color: #1E4D8C !important;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
  }
  .close-modal:hover {
    color: #00A896;
  }
  .filters-section .desktop-only {
    display: none !important;
  }
}

/* Esconde filtro mobile no desktop */
.mobile-filter-bar, .filter-modal { display: none; }

@media (max-width: 768px) {
  .mobile-filter-bar { display: flex; }
  .filter-modal { display: none; }
  .filter-modal.active { display: flex; }
}

/* Menu lateral de categorias só no desktop */
@media (max-width: 768px) {
  .filters { display: none !important; }
}
@media (min-width: 769px) {
  .filters { display: block; }
}

@media (max-width: 768px) {
  nav .menu-social-icons {
    display: flex !important;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  nav .menu-social-icons a {
    color: #1E4D8C;
    font-size: 32px;
    transition: color 0.2s;
  }
  nav .menu-social-icons a:hover {
    color: #00A896;
  }
}
@media (min-width: 769px) {
  .menu-social-icons { display: none !important; }
}

.close-menu-mobile { display: none !important; }
@media (max-width: 768px) {
  .close-menu-mobile {
    display: flex !important;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #1E4D8C;
    font-size: 28px;
    z-index: 1001;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
  }
  .close-menu-mobile:hover {
    color: #00A896;
  }
}

@media (max-width: 768px) {
  .menu-overlay {
    z-index: 1000 !important;
  }
  nav {
    z-index: 1101 !important;
  }
}
@supports (-webkit-touch-callout: none) {
  nav {
    z-index: 1101 !important;
  }
  .menu-overlay {
    z-index: 1000 !important;
  }
}

/* Estilos para páginas Saiba Mais */
.product-details {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.product-details h1 {
    font-size: 2.5em;
    color: #1a4789;
    margin-bottom: 30px;
    text-align: center;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5em;
    color: #1a4789;
    margin-bottom: 20px;
}

.feature h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.product-gallery {
    margin: 50px 0;
}

.product-gallery h2 {
    text-align: center;
    color: #1a4789;
    margin-bottom: 30px;
    font-size: 2em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.product-benefits {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
}

.product-benefits h2 {
    color: #1a4789;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2em;
}

.product-benefits ul {
    list-style: none;
    padding: 0;
}

.product-benefits li {
    color: #333;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
}

.product-benefits li:before {
    content: "✓";
    color: #1a4789;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    color: #1a4789;
    margin-bottom: 20px;
    font-size: 2em;
}

.cta-section p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.whatsapp-cta:hover {
    background: #128C7E;
}

/* Responsividade */
@media (max-width: 768px) {
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .product-details h1 {
        font-size: 2em;
    }
    
    .feature {
        padding: 20px;
    }
}

/* Estilo aprimorado para a página Quem Somos */
.missao, .valores {
    background: #f9fbfd;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
    padding: 32px 28px 24px 28px;
    margin-bottom: 32px;
    border-left: 6px solid #2196f3;
}

.missao h2, .valores h2 {
    color: #2196f3;
    font-size: 2.1rem;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.valores ul {
    list-style: none;
    padding: 0;
}

.valores li {
    margin-bottom: 16px;
    font-size: 1.13rem;
    display: flex;
    align-items: flex-start;
}

.valores li strong {
    margin-right: 8px;
}

.valores li::before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #2196f3;
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: 2px;
}

.cta {
    text-align: left;
    margin-top: 24px;
}

.cta-button {
    background: #1E4D8C;
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(33,150,243,0.08);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #153C70;
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 600px) {
    .missao, .valores {
        padding: 18px 8px 14px 12px;
    }
    .cta-button {
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
    }
}

.product-description .description-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Estilos para a página Fale Conosco */
.page-banner {
    background: linear-gradient(135deg, #1E4D8C 0%, #00A896 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 50px;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #1E4D8C;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

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

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E4D8C;
    box-shadow: 0 0 0 3px rgba(30, 77, 140, 0.1);
}

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

.submit-button {
    background: linear-gradient(135deg, #1E4D8C 0%, #00A896 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 77, 140, 0.3);
}

.submit-button i {
    font-size: 1.2rem;
}

.contact-info-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-info-container h2 {
    color: #1E4D8C;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    background: linear-gradient(135deg, #1E4D8C 0%, #00A896 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #1E4D8C;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details a {
    color: #1E4D8C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #00A896;
}

.social-contact {
    margin-top: 30px;
}

.social-contact h3 {
    color: #1E4D8C;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-buttons a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.facebook-btn {
    background: #1877F2;
}

.facebook-btn:hover {
    background: #166FE5;
    transform: translateY(-2px);
}

.map-section {
    padding: 60px 0;
    background: white;
}

.map-section h2 {
    color: #1E4D8C;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.map-section p {
    color: #666;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    color: #1E4D8C;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.faq-item h3 {
    color: #1E4D8C;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item h3 i {
    color: #00A896;
    font-size: 1.5rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Responsividade para a página de contato */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 25px;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .social-buttons a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 40px 0;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 30px 0;
    }
    
    .map-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        align-self: center;
    }
}