@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

body {
    font-family: 'Oswald', sans-serif;
    background-color: #000;
    color: #fff;
    font-size: 16px;
}

a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

h2 {
    font-size: 37px;
}

.caps {
    text-transform: uppercase;
}

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

.logo img {
    max-height: 120px;
}

.menu-hamburger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hamburger-icon {
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: flex;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    top: 8px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: calc(50% - 100px);
    transform: translateX(-50%);
    background-color: #666666;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #555555;
    color: white;
}

/* Position relative for dropdown container */
.col-md-4.text-center {
    position: relative;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-links a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ccc;
}

.bg-metal {
    background-color: #000;
    background-image: url('img/bkg.webp');
    background-size: contain;
    background-position: center top;
    background-repeat: repeat-y;
    padding-bottom: 50px;
}

.main-section {
    padding-top: 50px;
}

.panel {
    background-color: rgba(55, 55, 55, 0.4);
    padding: 40px;
    border-radius: 20px;
}

.panel-6 {
    width: 48%;
}

.line {
    height: 10px;
    background: #FEC806;
    background: linear-gradient(90deg,rgba(254, 200, 6, 1) 0%, rgba(196, 33, 37, 1) 100%);
}

footer {
    background-color: #565655;
}

/* Estilos do formulário de contato */
.contact-form .form-control {
    width: 100%;
    padding: 21px;
    color: white;
    background-color: #AAAAAA;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
}

.contact-form .form-control::placeholder {
    color: white;
    opacity: 0.8;
}

.contact-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(254, 200, 6, 0.5);
    background-color: #999999;
}

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

.contact-form .btn {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-enviar-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.banner img {
    max-width: 100%;
}

/* Banner Carousel Custom Styles */
.carousel-indicators {
    margin-bottom: 1.5rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators .active {
    background-color: #FEC806;
    width: 14px;
    height: 14px;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Estilos para os botões WhatsApp */
.btn-whatsapp {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-bg {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    /* width: 90%; */
    justify-content: center;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-text {
    color: #000;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

/* MOBILE */
/* Media Query para dispositivos menores que 768px */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .logo img {
        max-height: 80px;
    }

    .banner {
        overflow: hidden;
        display: flex;
    }

    /* .banner img {
        max-width: 150%;
        width: 150%;
        transform: translateX(-13%);
    } */

    .carousel-indicators {
        margin-bottom: 0.5rem;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }

    .carousel-indicators .active {
        width: 12px;
        height: 12px;
    }
    
    .top-section {
        padding: 15px 0;
    }
    
    .main-section {
        padding-top: 30px;
    }
    
    .panel {
        padding: 20px;
    }
    
    .panel-6 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .bg-metal {
        padding-bottom: 30px;
    }
    
    .dropdown-menu {
        left: calc(50% - 75px);
        min-width: 120px;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .menu-hamburger {
        font-size: 16px;
    }
    
    .hamburger-icon {
        width: 30px;
    }
    
    .hamburger-icon::before,
    .hamburger-icon::after {
        width: 30px;
    }
    
    .contact-form .form-control {
        padding: 15px;
        font-size: 14px;
    }
    
    .contact-form textarea.form-control {
        min-height: 80px;
    }
    
    .btn-enviar-img {
        max-width: 200px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        font-size: 30px;
    }

    .bt-fale-agora img {
        width: 100%;
    }

    .btn-text {
        font-size: 12px;
    }

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

    .btn-content {
        gap: 8px;
        width: 8%;
    }

    .logo-footer {
        text-align: center;
    }

    /* Estilos para lista com ícones - mobile */
    .list-unstyled li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 8px;
    }

    .list-unstyled li img {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        margin-top: 2px;
    }

    .list-unstyled li .me-3 {
        margin-right: 0 !important;
    }

    .if-mobile-display-none {
        display: none;
    }
}

/* Cookie Consent Banner Styles */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-top: 3px solid #FEC806;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

#cookie-consent-banner.hide {
    transform: translateY(100%);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: #FEC806;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cookie-text p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #FEC806;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-text a:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.btn-cookie-accept {
    background: linear-gradient(90deg, #FEC806 0%, #C42125 100%);
    color: #000;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 200, 6, 0.4);
}

.btn-cookie-decline {
    background: transparent;
    color: #fff;
    border: 2px solid #666;
}

.btn-cookie-decline:hover {
    background: #666;
    transform: translateY(-2px);
}

/* Cookie Notification */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    z-index: 10000;
    animation: slideInRight 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Styles for Cookie Banner */
@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h4 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-cookie-accept,
    .btn-cookie-decline {
        flex: 1;
        max-width: 150px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .cookie-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 13px;
        padding: 12px 15px;
    }
}