/* Reset geral de margens e paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Corpo da página */
body {
    background-color: #f4f4f4;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Estilos do Header */
header {
    background-color: #ff69b4; /* Rosa vibrante */
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header:hover {
    background-color: #ff3385; /* Tom mais intenso de rosa */
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    list-style: none;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
    color: #ffbcf0;
    transform: translateY(-3px); /* Levanta o link */
}

/* Animações de rolagem */
section {
    padding: 80px 20px;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

section:hover {
    transform: translateY(-10px); /* Leve elevação do conteúdo */
}

/* Seção de Contato e Botões */
.btn {
    display: inline-block;
    background-color: #25D366; /* WhatsApp Verde */
    color: #fff;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #128C7E;
    transform: scale(1.05); /* Animação de zoom */
}

/* Botões de Formulário */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #ff69b4;
}

/* Estilo geral para as seções */
.section {
  position: relative;
  width: 100%;
  height: 100vh; /* Cada seção ocupa a altura da janela */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax fixado */
}

/* Exemplo para cada seção com imagens de fundo diferentes */
.section-1 {
  background-image: url('assets/images/background1.jpg');
}

.section-2 {
  background-image: url('assets/images/background2.jpg');
}

.section-3 {
  background-image: url('assets/images/background3.jpg');
}


/* Estilos do Footer */
footer {
    background-color: #2a2a2a;
    padding: 40px 20px;
    color: #fff;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

footer:hover {
    background-color: #3f3f3f;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilos das Colunas do Footer */
.footer-links, .footer-seo, .footer-contato {
    flex: 1;
    padding: 20px;
    margin: 10px;
    transition: all 0.3s ease-in-out;
}

.footer-links h3, .footer-seo h3, .footer-contato h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ff69b4; /* Rosa vibrante */
    text-transform: uppercase;
}

/* Links do Footer */
.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links a, .footer-contato a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover, .footer-contato a:hover {
    color: #ff69b4;
    transform: translateX(5px); /* Animação de deslocamento */
}

.footer-seo p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contato p {
    margin: 10px 0;
}

/* Nuvem de Tags */
.footer-tags {
    margin-top: 20px;
    font-size: 12px;
    color: #b0b0b0;
}

.footer-tags a {
    color: #ff69b4;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-tags a:hover {
    color: #fff;
    transform: scale(1.1); /* Animação de zoom */
}

/* Rodapé - Direitos Autorais */
.footer-bottom {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: #b0b0b0;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Efeito de hover nas colunas */
.footer-links:hover, .footer-seo:hover, .footer-contato:hover {
    background-color: #383838;
    border-radius: 10px;
}

/* Botões e Links do WhatsApp */
.footer-contato a {
    display: inline-block;
    background-color: #25D366;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-contato a:hover {
    background-color: #128C7E;
    transform: translateY(-3px); /* Efeito de levantar o botão */
}

/* Adicionando um efeito sutil de sombra ao passar o mouse nas colunas */
.footer-links, .footer-seo, .footer-contato {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-links:hover, .footer-seo:hover, .footer-contato:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Estilos para os ícones das redes sociais */
.social-icons {
    position: absolute;
    top: 20px;       /* Distância do topo */
    right: 20px;     /* Distância da direita */
    display: flex;
    gap: 15px;       /* Espaçamento entre os ícones */
}

.social-icons a {
    color: #000; /* Cor padrão dos ícones */
    font-size: 24px; /* Tamanho dos ícones */
    transition: color 0.3s ease-in-out; /* Efeito de transição para a cor */
}

.social-icons a:hover {
    color: #FF4081; /* Cor quando passar o mouse (rosa) */
}

/* Estilos para o menu no desktop */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;  /* Centraliza os itens do menu */
    align-items: center;      /* Alinha os itens verticalmente */
    gap: 20px;                /* Espaçamento entre os itens */
}

nav ul li {
    margin: 0;
}

/* Reduzir o tamanho do ícone de hambúrguer para o desktop */
.hamburger {
    display: none;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    nav ul {
        display: none;    /* O menu fica oculto por padrão */
        width: 100%;      /* Garantir que ocupe toda a largura */
        text-align: center;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;   /* Espaçamento entre os itens no menu hambúrguer */
    }

    .hamburger {
        display: block;   /* Exibe o ícone do hambúrguer */
        cursor: pointer;
    }

    nav ul.active {
        display: block;   /* Exibe o menu quando ativo */
    }
}

/* Configuração do carrossel */
.carousel {
    position: relative;
    width: 100%;
    height: 100vh; /* Tela cheia */
    overflow: hidden;
}

.carousel-container {
    display: flex;
    height: 100%;
    width: 300%; /* 3 slides */
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 1;
    position: relative;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Imagem ajustada */
}

.carousel-caption {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
    width: 70%;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 1.2rem;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}




<link rel="stylesheet" href="css/style.css">

