/* ============================================= */
/* ARQUIVO: sobre.css                            */
/* ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

/* Variáveis */
:root {
    --cor-primaria: #2f2317;
    --cor-secundaria: #3b2e1c;
    --cor-accent: #8B7355;
    --cor-dourado: #D4A574;
    --cor-branco: #ffffff;
}

section,
footer {
    padding: 54px 0;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    width: 100%;
    transition: all 0.5s;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: var(--cor-primaria);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav ul a {
    color: white;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    display: block;
    position: relative;
    padding: 5px 0;
}

nav ul a::after {
    content: "";
    background-color: var(--cor-dourado);
    height: 2px;
    width: 0%;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

nav ul a:hover::after {
    width: 80%;
}

.logo {
    width: auto;
    height: 50px;
}

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

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

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

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

/* Menu Mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #35271a;
    transition: height 0.4s ease;
    z-index: 9998;
}

.mobile-menu.active {
    height: auto;
    max-height: 400px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a {
    display: block;
    padding: 15px 30px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mobile-menu ul li a:hover {
    background-color: var(--cor-primaria);
    color: var(--cor-dourado);
}

/* Contact Section (Background do Slider) */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.containerslide {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Slider Wrapper */
.slider-wrapper {
    overflow: hidden;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

/* Banner (Slides) */
.banner {
    user-select: none;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
}

.banner .photo {
    flex: 0 0 auto;
}

.banner .photo img {
    border-radius: 12px;
    width: 350px;
    height: 480px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.banner .banner-text {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    color: var(--cor-primaria);
}

.banner .banner-text h1 {
    font-size: 48px;
    color: var(--cor-primaria);
    margin-bottom: 20px;
    font-weight: 700;
}

.banner .banner-text p {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    margin: 15px 0;
    line-height: 1.8;
}

.banner .banner-text strong {
    color: var(--cor-primaria);
    font-weight: 600;
}

/* Botão */
.btn {
    background-color: var(--cor-primaria);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: 2px solid var(--cor-primaria);
    font-weight: 600;
}

.btn:hover {
    background-color: transparent;
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

/* Swiper Customização */
.slider-wrapper .swiper-pagination-bullet {
    background: var(--cor-primaria);
    opacity: 0.5;
    height: 12px;
    width: 12px;
}

.slider-wrapper .swiper-pagination-bullet-active {
    background: var(--cor-primaria);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.slider-wrapper .swiper-slide-button {
    color: var(--cor-primaria);
    transition: 0.3s ease;
}

.slider-wrapper .swiper-slide-button:hover {
    color: var(--cor-accent);
}

.slider-wrapper .swiper-button-next,
.slider-wrapper .swiper-button-prev {
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-wrapper .swiper-button-next::after,
.slider-wrapper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--cor-primaria);
    color: white;
    padding: 60px 20px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-links h3,
.footer-social h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--cor-dourado);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--cor-dourado);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    /* Esconder menu desktop e mostrar hambúrguer */
    nav ul.ul {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
        z-index: 9999;
        position: relative !important;
        flex-direction: column !important;
        gap: 5px !important;
        width: 35px !important;
        height: 30px !important;
    }
    
    .menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: white !important;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }

    .banner .photo img {
        width: 280px;
        height: 380px;
    }

    .banner .banner-text {
        text-align: center;
        padding: 0;
    }

    .banner .banner-text h1 {
        font-size: 36px;
    }

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

    .slider-wrapper {
        margin: 0 10px;
    }

    .slider-wrapper .swiper-slide-button {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

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

@media (max-width: 480px) {
    .contact-section {
        padding: 100px 10px;
    }

    .banner .photo img {
        width: 240px;
        height: 320px;
    }

    .banner .banner-text h1 {
        font-size: 28px;
    }

    .banner .banner-text p {
        font-size: 15px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}