/* Estilos Gerais */
body {
    background-color: #F5F5F5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
}

/* Carregar a fonte VolkswagenTS */
@font-face {
    font-family: 'VolkswagenTS';
    src: url('/assets/fonts/VolkswagenTS-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Estilo comum para :focus */
:focus {
    outline: 2px solid #FF6200;
    outline-offset: 2px;
}

/* Navbar */
.navbar-custom {
    background-color: #FFFFFF;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    min-height: 100px;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-custom.scrolled {
    background-color: #F5F5F5;
}

.navbar-custom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-custom .navbar-brand.logo-highlight {
    color: #00858D;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.5rem;
    padding: 8px;
    order: 2;
}

.navbar-custom .navbar-brand img {
    width: 275px;
    height: auto;
    transition: width 0.3s ease, height 0.3s ease;
}

.navbar-custom .navbar-toggler {
    border: none;
    color: #00858D;
    padding: 8px 15px;
    font-size: 1.25rem;
    order: 1;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 133, 141, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom .navbar-toggler:focus,
.navbar-custom .navbar-toggler:active {
    background-color: transparent;
    box-shadow: none;
}

.navbar-custom .navbar-toggler:focus-visible {
    border: 2px solid #1D5C63;
    border-radius: 4px;
}

/* Estilo do Menu */
.nav-menu-custom {
    display: flex;
    padding: 10px 0;
    order: 0;
    flex-grow: 1;
    margin-right: 15px;
}

.nav-menu-custom .nav-link {
    font-family: 'VolkswagenTS', sans-serif;
    color: #333;
    text-transform: uppercase;
    padding: 10px 15px;
    margin: 0 5px;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
    position: relative;
}

.nav-menu-custom .nav-link:hover,
.nav-menu-custom .nav-link.active {
    color: #FF6200;
}

.nav-menu-custom .nav-link:hover::after,
.nav-menu-custom .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #FF6200;
}

/* Estilo dos Dropdowns */
.nav-menu-custom .dropdown-menu {
    background-color: #FFFFFF;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.nav-menu-custom .dropdown-item {
    color: #333;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu-custom .dropdown-item:hover {
    color: #FF6200;
    background-color: transparent;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: none;
    background-color: #00858D;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
    display: block;
    opacity: 1;
}

.back-to-top:hover {
    background-color: #1D5C63;
    transform: scale(1.1);
}

/* Product Section */
.product-section {
    max-width: 1200px;
    margin: 40px auto;
    flex: 1;
    padding-top: 20px;
    width: 100%;
}

.product-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

.product-section h1 {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.media-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.media-container.no-video {
    display: block;
}

.gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    max-height: 660px;
}

.media-container.no-video .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-height: none;
    width: 100%;
}

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

.media-container.no-video .gallery img {
    height: 250px;
}

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

.video-section {
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-section .container .content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.product-section .container .content h1, 
.product-section .container .content h2 {
    color: #00858D;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: left;
}

.product-section .container .content h3 {
    color: #00858D;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: left;
}

.product-section .container .content h4,
.product-section .container .content h5,
.product-section .container .content h6 {
    text-align: left;
}

.product-section .container .content p {
    margin-bottom: 15px;
}

.product-section .container .content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.product-section .container .content li {
    margin-bottom: 5px;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 8px;    
}

.btn-contact, .btn-share {
    background-color: #00858D;
    color: white;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
    font-size: 1rem;
}

.btn-contact:hover, .btn-share:hover {
    background-color: #1D5C63;
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox.active img {
    transform: scale(1);
}

/* Hero Section */
.hero-section {
    background-image: url('../img/fundo-maquina-desenho.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 150px 0 100px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 133, 141, 0.85);
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: inherit;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    filter: brightness(0.8) contrast(0.9);
    z-index: -2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: justify;
    line-height: 1.6;
}

.hero-section .btn-primary {
    background-color: #FF6200;
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #F28C38;
}


.hero-section .hero-image {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
  }

/* Contact Section */
.contact-section {
    padding: 150px 0 100px;
    background-image: url('../img/fundo-maquina-desenho.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 100px);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 133, 141, 0.85);
    z-index: -1;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: inherit;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    filter: brightness(0.8) contrast(0.9);
    z-index: -2;
}

.contact-section h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
}

.contact-section .section-subtitle {
    font-size: 1.1rem;
    color: #E6F0FA;
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background-color: rgba(0, 133, 141, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-label {
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.contact-form .form-control {
    border: 1px solid #E6F0FA;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    background-color: #FFFFFF;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #FF6200;
    box-shadow: 0 0 5px rgba(255, 98, 0, 0.3);
}

.contact-form .form-control:invalid:focus {
    border-color: #dc3545;
}

.contact-form .btn-primary {
    background-color: #FF6200;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    width: 100%;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: #F28C38;
}

/* Carousel Section */
.carousel-section {
    padding: 0;
    background-color: #00858D;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    height: 400px;
}

.carousel-item picture,
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00858D;
    border: none;
    margin: 0 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
    background-color: #1D5C63;
    transform: scale(1.3);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    background: rgba(0, 133, 141, 0.3);
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 50%;
    padding: 20px;
}

/* Cards Section */
.cards-section {
    padding: 50px 0;
    background-color: #F5F5F5;
}

.cards-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    color: #333;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
}

.card-text {
    color: #666;
}

.card .btn-primary {
    background-color: #00858D;
    border: none;
}

.card .btn-primary:hover {
    background-color: #1D5C63;
}

/* Downloads Section */
.downloads-section {
    padding: 50px 0;
    background-color: #F5F5F5;
}

.view-toggle {
    margin-left: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-toggle.active,
.view-toggle:hover {
    color: white;
    background-color: #F28C38;
    border-color: #F28C38;
}

.downloads-section .table {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
}

.downloads-section .table thead {
    background-color: #00858D;
    color: white;
}

.downloads-section .table th,
.downloads-section .table td {
    padding: 15px;
    vertical-align: middle;
}

.downloads-section .table th:nth-child(1),
.downloads-section .table td:nth-child(1) {
    width: 50%;
}

.downloads-section .table th:nth-child(2),
.downloads-section .table td:nth-child(2) {
    width: 20%;
}

.downloads-section .table th:nth-child(3),
.downloads-section .table td:nth-child(3) {
    width: 30%;
    white-space: nowrap;
}

.downloads-section .table .btn-primary {
    background-color: #F28C38;
    border-color: #F28C38;
}

.downloads-section .table .btn-primary:hover {
    background-color: #F28C38;
}

.downloads-section .table .btn-outline-secondary {
    background-color: #00858D;
    border-color: #00858D;
    color: #FFFFFF;
}

.downloads-section .table .btn-outline-secondary:hover {
    background-color: #00858D;
    color: white;
}

.downloads-section .view-card .row {
    gap: 20px;
}

.downloads-section .view-card .row .col-md-4:nth-child(-n+3) {
    margin-top: 20px;
}

/* About Section */
.about-section {
    padding: 50px 0;
    background-color: #E6F0FA;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.about-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.about-section .about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

/* E-commerce Section */
.ecommerce-section {
    padding: 50px 0;
    background-color: #fff;
}

.ecommerce-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}

.ecommerce-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ecommerce-parallax {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
}

.parallax-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.parallax-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.parallax-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 600px;
}

.ecommerce-section .btn-lg {
    padding: 12px 30px;
    font-size: 1.2rem;
    background-color: #00858D;
    border: none;
}

.ecommerce-section .btn-lg:hover {
    background-color: #1D5C63;
}

/* Equipament Section */
.equipament-section {
    padding: 50px 0;
    background-color: #F5F5F5;
}

.equipament-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.equipament-section .card-body {
    padding: 0;
}

.equipament-section .btn {
    text-align: center;
    font-size: 1.1rem;
    padding: 10px;
    text-transform: uppercase;
}

.equipment-back-link {
    display: inline-block;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.equipment-back-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.equipment-back-link i {
    margin-right: 5px;
    font-size: 1rem;
}

.equipment-category {
    color: #FF6200;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.equipament-section .table {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0;
}

.equipament-section .table thead {
    background-color: #00858D;
    color: white;
}

.equipament-section .table th,
.equipament-section .table td {
    padding: 15px;
    vertical-align: middle;
}

.equipament-section .table th:nth-child(1),
.equipament-section .table td:nth-child(1) {
    width: 70%;
}

.equipament-section .table th:nth-child(2),
.equipament-section .table td:nth-child(2) {
    width: 30%;
    white-space: nowrap;
}

.equipament-section .table .btn-primary {
    background-color: #FF6200;
}

.equipament-section .table .btn-primary:hover {
    background-color: #F28C38;
}

/* Page Wrapper */
.page-wrapper {
    background-image: url('../img/fundo-maquina-desenho.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 133, 141, 0.85);
    z-index: -1;
}

.page-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: inherit;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    filter: brightness(0.8) contrast(0.9);
    z-index: -2;
}

/* Animações */
.animate-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Footer */
footer {
    background-color: #00858D;
    color: white;
    padding: 40px 0;
    margin-top: auto;
}

footer h5 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

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

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #1D5C63;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons svg {
    fill: white;
    transition: fill 0.3s ease;
    width: 24px;
    height: 24px;
}

.social-icons a:hover svg {
    fill: #1D5C63;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a {
    color: white;
}

.contact-info a:hover {
    color: #1D5C63;
}

.contact-info svg {
    fill: white;
    transition: fill 0.3s ease;
    width: 16px;
    height: 16px;
}

.contact-info a:hover svg {
    fill: #1D5C63;
}

footer .bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

/* Botão Flutuante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2000;
}

.whatsapp-btn:hover {
    background-color: #34B7F1;
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Moldura para Páginas Admin */
.page-container {
    padding: 30px 20px;
    border: 1px solid #E6F0FA;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Media Queries para Mobile */
@media (max-width: 768px) {
    .navbar-custom {
        min-height: auto;
        padding: 10px 15px;
        flex-wrap: wrap;
    }

    .navbar-custom .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-custom .navbar-brand.logo-highlight {
        padding: 4px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-custom .navbar-brand img {
        width: 160px;
        height: 90px;
    }

    .navbar-custom .navbar-toggler {
        margin-right: 10px;
    }

    .navbar-custom .navbar-collapse {
        order: 2;
        width: 100%;
        background-color: #FFFFFF;
        border-radius: 0 0 8px 8px;
        padding: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: absolute;
        top: 100%;
        left: 0;
    }

    .nav-menu-custom {
        flex-direction: column;
        padding: 0;
        margin-right: 0;
        width: 100%;
    }

    .nav-menu-custom .nav-link {
        font-family: 'VolkswagenTS', sans-serif;
        padding: 12px 15px;
        margin: 5px 0;
        text-align: left;
        font-size: 0.9rem;
    }

    .nav-menu-custom .nav-link:hover::after,
    .nav-menu-custom .nav-link.active::after {
        left: 15px;
        right: auto;
        width: 30px;
    }

    .nav-menu-custom .dropdown-menu {
        margin-top: 0;
        padding-left: 15px;
    }

    .nav-menu-custom .dropdown-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .product-section {
        margin: 20px 0;
        padding-top: 20px;
    }

    .media-container {
        flex-direction: column;
    }

    .media-container.no-video .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery {
        max-height: none;
    }

    .gallery img {
        height: 250px;
    }

    .media-container.no-video .gallery img {
        height: 200px;
    }

    .product-section h1 {
        font-size: 2rem;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-contact, .btn-share {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }

    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
        text-align: justify;
    }

    .hero-section .hero-image {
        margin-top: 20px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-section {
        padding: 100px 0 60px;
    }

    .contact-section h1 {
        font-size: 2rem;
    }

    .contact-section .section-subtitle {
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form .form-control {
        font-size: 0.95rem;
    }

    .contact-form .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .about-section {
        padding: 30px 0;
        text-align: center;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section h3 {
        font-size: 1.25rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .about-section .about-image {
        margin-top: 20px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .ecommerce-section {
        padding: 30px 0;
    }

    .ecommerce-section h2 {
        font-size: 1.75rem;
    }

    .ecommerce-section .section-subtitle {
        font-size: 1rem;
    }

    .ecommerce-parallax {
        height: 300px;
    }

    .parallax-title {
        font-size: 1.5rem;
    }

    .parallax-text {
        font-size: 0.95rem;
    }

    .ecommerce-section .btn-lg {
        padding: 10px 25px;
        font-size: 1.1rem;
    }

    .back-to-top {
        display: none !important;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

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

    .page-container {
        padding: 20px 10px;
        border-radius: 8px;
    }

    .downloads-section {
        padding: 30px 0;
    }

    .downloads-section h1 {
        font-size: 2rem;
    }

    .view-toggle {
        padding: 8px 12px;
        font-size: 0.95rem;
    }

    .downloads-section .table th,
    .downloads-section .table td {
        padding: 10px;
        font-size: 0.95rem;
    }

    .downloads-section .table th:nth-child(1),
    .downloads-section .table td:nth-child(1) {
        width: 40%;
    }

    .downloads-section .table th:nth-child(2),
    .downloads-section .table td:nth-child(2) {
        width: 20%;
    }

    .downloads-section .table th:nth-child(3),
    .downloads-section .table td:nth-child(3) {
        width: 40%;
    }

    .downloads-section .table .btn-sm {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .downloads-section .view-card .row {
        gap: 15px;
    }

    .downloads-section .view-card .row .col-md-4:nth-child(-n+3) {
        margin-top: 15px;
    }

    .equipament-section {
        padding: 30px 0;
    }

    .equipament-section h1 {
        font-size: 2rem;
    }

    .equipament-section .table th,
    .equipament-section .table td {
        padding: 10px;
        font-size: 0.95rem;
    }

    .equipament-section .table th:nth-child(1),
    .equipament-section .table td:nth-child(1) {
        width: 60%;
    }

    .equipament-section .table th:nth-child(2),
    .equipament-section .table td:nth-child(2) {
        width: 40%;
    }

    .equipament-section .table .btn-sm {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .equipament-section .view-card .row {
        gap: 15px;
    }

    .equipament-section .view-card .row .col-md-4:nth-child(-n+3) {
        margin-top: 15px;
    }

    footer {
        padding: 30px 0;
        text-align: center;
    }

    footer .col-md-4 {
        margin-bottom: 30px;
    }

    footer h5 {
        font-size: 1.1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-info p {
        font-size: 0.95rem;
        justify-content: center;
    }

    .contact-info svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 576px) {
    .nav-menu-custom .nav-link {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .hero-image {
        max-width: 100%;
    }

    .contact-section h1 {
        font-size: 1.75rem;
    }

    .contact-form .form-control {
        font-size: 0.95rem;
    }

    .contact-form .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .product-section h1 {
        font-size: 1.75rem;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .about-section h3 {
        font-size: 1.1rem;
    }

    .about-section p {
        font-size: 0.95rem;
    }

    .ecommerce-parallax {
        height: 250px;
    }

    .parallax-title {
        font-size: 1.25rem;
    }

    .parallax-text {
        font-size: 0.9rem;
    }

    .downloads-section h1 {
        font-size: 1.75rem;
    }

    .view-toggle {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .downloads-section .table th,
    .downloads-section .table td {
        padding: 8px;
        font-size: 0.9rem;
    }

    .downloads-section .view-card .row {
        gap: 10px;
    }

    .downloads-section .view-card .row .col-md-4:nth-child(-n+3) {
        margin-top: 10px;
    }

    .equipament-section h1 {
        font-size: 1.75rem;
    }

    .equipament-section .table th,
    .equipament-section .table td {
        padding: 8px;
        font-size: 0.9rem;
    }

    .equipament-section .view-card .row {
        gap: 10px;
    }

    .equipament-section .view-card .row .col-md-4:nth-child(-n+3) {
        margin-top: 10px;
    }

    footer {
        padding: 20px 0;
    }

    footer h5 {
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .social-icons svg {
        width: 20px;
        height: 20px;
    }

    .contact-info svg {
        width: 12px;
        height: 12px;
    }
}