:root {
    --primary: #000000;        /* preto */
    --secondary: #ffffff;      /* fundo branco */
    --accent: #c9a227;         /* dourado elegante */
    --dark: #000000;           /* textos pretos */
    --light: #ffffff;
}

.material-symbols-outlined{
    color: var(--accent);
}

html{
    scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--secondary);
    color: var(--dark);
}

.menu-header {
    display: flex;
    gap: 35px;
}

.menu-header a {
    text-decoration: none;
    color: #c9a227; /* dourado */
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.menu-header a:hover {
    color: #ffffff;
}

/* MENU HAMBURGUER */

#menu{
    z-index: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #e6c65c;
    transition: 0.3s;
}


/* MOBILE - MENU HAMBURGER - NAV*/
@media(max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 90px;
        right: 0;
        background: #000000;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        display: none;
    }

    nav a {
        font-size: 18px;
    }

    nav.active {
        display: flex;
    }
}


/* NAV */

/* MENU PREMIUM DOURADO */

nav {
    display: flex;
    gap: 40px;
}

nav a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #e6c65c; /* dourado claro */
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

/* Efeito ao passar o mouse */
nav a:hover {
    color: #ffffff;
}

/* Linha animada elegante */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #e6c65c;
    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


/* HEADER */

header {
    background: #000;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
}
@media(max-width:768px) {
    .logo-img {
    height: 80px;
    }
}


/* CONTAINER */

.container {
    padding: 60px 8%;
}

/* CARROSSEL */

.carousel {
    position: relative;
    max-width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: rgb(0, 0, 0);
}

@media(min-width: 1200px){
	.carousel {
	    max-width: 90%;
		margin: 0 auto;
	}
}

.carousel img { 
    height: 450px;
    object-fit: cover;
    display: none;
    margin: 0 auto;
}

.carousel img.active {
    display: block;
}

/* BOTÕES */

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 25px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.prev { left: 15px; }
.next { right: 15px; }

/* INDICADORES */

.dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
@media(max-width:768px){
    .dot {
        height: 5px;
        width: 5px;
    }
}

.dot.active {
    background-color: var(--primary);
}

/* INFO */

.info {
    margin-top: 50px;
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.price {
    font-size: 26px;
    font-weight: bold;
    color: var(--accent);
    margin: 20px 0;
}


/* DESCRIÇÃO */

.descricao {
    margin-top: 50px;
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.descricao h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.descricao p {
    line-height: 1.8;
    margin-bottom: 15px;
}


/* VÍDEO */

.video {
    margin-top: 40px;
}

.video iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 100;
}

/* RESPONSIVO */

@media(max-width: 768px){
    .carousel {
        height: 300px;
    }
    .carousel img {
        height: 300px;
    }
    .video iframe {
        height: 250px;
    }

    header {
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: #000;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        display: none;
    }

    nav.active {
        display: flex;
    }
}

/* FOOTER */

footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    margin-top: 70px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 40px;
	background-color: black;
	color: white;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    margin-bottom: 20px;

}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-logo {
    height: 55px;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #ffffff84;
	background-color: black;
}

/* RESPONSIVO FOOTER */

@media(max-width: 768px){
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 2rem;
    background-color: black;
    color: white;
    text-align: center;
}

.footer-col {
    width: 220px; /* tamanho fixo */
}

.footer-col h4 {
    margin-bottom: 12px;
}

.footer-col p {
    margin-bottom: 6px;
}
}


/* SECTION ESPECIALISTA */

.especialista {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 70px 8%;
    margin-top: 60px;
    border-radius: 15px;
    max-width: 80%;
    margin: 0 auto;
}

.especialista-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.especialista-texto h2 {
    color: #e6c65c;
    font-size: 30px;
    margin-bottom: 15px;
}

.especialista-texto p {
    color: #ffffff;
    max-width: 500px;
    line-height: 1.6;
}

.btn-especialista {
    background: #e6c65c;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-especialista:hover {
    background: #ffffff;
}