@charset "UTF-8";

@font-face {
    font-family: 'Adotados';
    src: url(../Fontes/Richat-rvpjL.otf) format('opentype');
    font-weight: normal;
}
:root {
    --font-adotado:'Adotados', cursive;
}

body {
    background-color: #F5F5F5;
    box-sizing: border-box ;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 4rem;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    height: 80px;
}

.logo img {
    height: 100px;
    width: auto; 
    transition: transform 0.3s ease;
    object-fit: contain; /* Garante que a imagem não distorça */
}

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

.navbar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    height: 100%;
}

.navbar a {
    text-decoration: none;
    color: #6A1B9A;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #F8A836;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F8A836;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.breadcrumb {
    font-size: 15px;
    color: #333333;
    margin: 40px 50px;
    padding: 10px 20px;
}

.breadcrumb a {
    text-decoration: none;
    color: #333333;
}

.breadcrumb a:hover {
    text-decoration: underline;
    text-decoration-color: #F8A836;
}

.breadcrumb span {
    color: #F8A836;
    font-weight: 700;
}

main h1 {
    text-align: center;
    margin: 60px 0 60px 0;
    font-size: 2.5rem;
    font-family: var(--font-adotado);
    color: #6A1B9A;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 600px; 
    position: relative;
    margin-bottom: 60px;
}

.social_media,
.map_right {
    width: 45%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social_media h2,
.map_right h2 {
    color: #F8A836;
    font-size: 30px;
    margin-bottom: 40px;
}

.social_info {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.social_info img {
    width: 60px; 
    height: 60px;
    margin-right: 10px;
    border-radius: 18px;

}

.link_social a {
    font-size: 20px;
    color: #6A1B9A;
    text-decoration: none;
    font-weight: bold;
}

.link_social a:hover {
    color: #F8A836;
}

.vertical_line {
    width: 2px;
    background-color: #000;
    height: 95%;
    margin: 0 20px;
}

.map iframe {
    width: 100%;
    height: 300px; 
    border: 0;
    margin-bottom: 15px;
}

.map p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}

.fas {
    margin-left: 8px;
}


.footer {
    background-color: #6A1B9A;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 300px;
    margin: 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #F8A836;
    padding-bottom: 5px;
}

.footer-column p {
    line-height: 1.6;
    text-align: justify;
}

.footer-menu {
    list-style: none;
}

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

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: #F8A836;
}

.social-icons {
    margin-top: 15px;
}

.social-icon {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #F8A836;
}

.social-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-contact-item {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.social-contact-item:hover {
    color: #F8A836;
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
    padding-top: 20px;
    color: #ddd;
}

.footer .footer-bottom img{
    max-width: 90px;
}

.footer-mobile {
    display: none;
    background-color: #6A1B9A;
    color: #fff;
    padding: 20px;
    padding-top: 10px;
    text-align: center;
}

.footer-mobile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.footer-mobile-content img {
    max-width: 80px;
    margin: 0;
    position: relative;
    top: 12px;
}

.footer-mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-mobile-social a {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.footer-mobile-social a:hover {
    color: #F8A836;
}

.footer-mobile p {
    margin-top: 15px;
    font-size: 14px;
    color: #ddd;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    header {
        position: fixed; 
        width: 100%;
        z-index: 1000;
        background: white;
        padding: 15px 20px;
    }

    .logo {
        margin-left: 10px; 
    }

    .menu-toggle {
        display: block;
        font-size: 40px;
        background: none;
        border: none;
        color: #6A1B9A;
        cursor: pointer;
        z-index: 1001;
        margin-right: 20px;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: rgba(255, 255, 255, 0.849);
        overflow: hidden;
        height: 0;
        opacity: 0;
        transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        padding-right: 1.5rem;
    }

    .navbar.open {
        height: auto;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar a {
        display: block;
        padding: 8px 0;
        color: #F8A836;
        font-weight: 600;
        font-size: 1rem;
        text-align: right;
    }

    body {
        padding-top: 80px;
    }

    .breadcrumb {
        font-size: 14px;
        margin: 20px 20px 0 20px;
        padding: 5px 15px;
    }

    main h1 {
        font-size: 2rem;
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .contact {
        margin-top: 0px;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .map_right {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .social_media {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .map_right {
        padding-top: 15px;
    }

    .social_info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .social_info img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
        border-radius: 6px;
    }

    .link_social a {
        font-size: 18px;
    }

    .vertical_line {
        width: 80%;
        height: 2px;
        background-color: #333333;
        margin: 20px auto; 
    }

    .map iframe {
        height: 250px; 
        max-width: 100%;
    }

    .map p {
        font-size: 14px;
        padding: 10px;
    }

    .footer {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

}
