

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #4B4B4B; /* Graphite */
    background-color: #F5F5F5; /* Off-white */
    line-height: 1.6;
}

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

/* Header */
header {
    background-image: url(./assets/menu3.png);
    color:  #F5F5F5; /* Branco */
    padding: 10px 0;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand {
    display: flex;
    align-items: center;
}

.logo {
    flex-shrink: 0;
    font-weight: bold;
    color: #B8860B; /* Dark Gold */
}

.logo img {
    max-width: 80px;
    height: auto;
}

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

.h2 {
    color: #4B4B4B;
    transition: color 0.3s;
}
h2:hover {
    color: #CD7F32; /* Bronze */
}

.menu {
    flex-shrink: 0;
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 20px;
}

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

.menu a:hover {
    color: #CD7F32; /* Bronze */
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

header h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 40px;
}

/* Hero */
.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    width: 100%;
}

.slide {
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
    transition: opacity 1s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.slide-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: left;
    color: #4B4B4B;
}

.slide h2 {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
    color: #001F3F;
}

.slide p {
    font-size: 18px;
    margin: 20px;

}

/* Benefits */
.benefits {
    padding: 50px 0;
    background-color: #ffffff;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #4B4B4B;
}

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


.benefit-item {
    text-align: center;
    padding: 20px;
    background-color: #F5F5F5;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
}

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


.benefit-item h3 {
    color: #4B4B4B;
    margin-bottom: 10px;
}

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

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #4B4B4B;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
 /* ---------------------------------- REDES SOCIAIS ---------------------------------- */
#redes-sociais {
    margin-top: 2px;
    margin-bottom: 30px;
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;
    color: #CD7F32;
    text-align: center;
    font-size: 18px;
}


.social-icons a {
    font-size: 30px;
    margin: 0 15px;
    transition: transform 0.3s;
}


.social-icons img {
    margin-top: 15px;
    width: 30px;
    height: 30px;
}
.social-icons img:hover {
    transform: scale(1.5);
}


/* Contact */
.contact {
    padding: 50px 0;
    background-color: #FFFFFF;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #001F3F;
}

.button {
    text-align: center;
    margin-bottom: 40px;
}

.cta-button {
    background-color: green;
    color: rgb(255, 255, 255);
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
    margin-bottom: 20px;
}

.cta-button:hover {
    background-color: greenyellow;
    transform: translateY(-3px);
    transform-style: scale(1);
}

.map {
    height: 300px;
    background-color: #F5F5F5;
    border-radius: 10px;
    overflow: hidden;
}

 /*Footer ---------------------------*/
footer {
  background: #4b4b4bf8;
  padding: 1rem;
  text-align: center;
  color: #f5f5f5;
  font-size: 0.7rem;
}
p a {
    font-size: 12px;
    color: #B8860B;
    text-decoration: none;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0,5rem;
}

.footer-logo {
  width: 30px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.5);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        justify-content: center;
        position: relative;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0503279f;
        padding: 10px 0;
        z-index: 10;
    }

    .brand {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        max-width: 100px;
        height: auto;
    }

    nav h2 {
        font-size: 20px;
        margin-left: 0;
        white-space: nowrap;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
    }

    .menu-toggle.active {
        transform: rotate(90deg);
    }


    .contact-content {
        display: block;
    }

    .map {
        max-width: 100vw !important;
        margin: 0 0 !important;
        height: 300px !important;
        border-radius: 0 !important;
        border: none !important;
    }

    .hero {
        height: 300px;
    }

    .slide h2 {
        font-size: 24px;
    }

    .slide p {
        font-size: 16px;
    }

    #redes-sociais {
        margin: 5px;
    }

    header {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: initial;
    }
}
