/* Variáveis CSS */
:root {
  --primary-color: #1a3a5f;
  --secondary-color: #af9335;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
  scrollbar-width: none;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

/* Container principal */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Seções como slides */
.slide-container {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

section {
  height: 100vh;
  scroll-snap-align: start;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Classes para alternância de cores */

.section-light {
  background-color: white;
  color: var(--text-color);
}

.section-dark {
  background-color: var(--primary-color);
  color: white;
}

.section-final {
  background: linear-gradient(
    to bottom,
    var(--primary-color) 0%,
    var(--primary-color) 10%,
    #1d242b 90%
  );
  color: white;
}

/* Títulos com cores adaptáveis */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.section-dark .section-title,
.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-final .section-title,
.section-final h2,
.section-final h3 {
  color: white;
}

.section-light .section-title,
.section-light h2,
.section-light h3 {
  color: var(--primary-color);
}

.section-description {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Layout do conteúdo das seções */
.section-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

/* Placeholder de imagem */
.image {
  background-color: #e9ecef;
  border-radius: var(--border-radius);
  height: 40vh;
  box-shadow: var(--box-shadow);
}

/* Tipografia */
h1,
h2,
h3 {
  color: var(--primary-color);
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 1.8rem;
  font-weight: 300;
}

h3 {
  font-size: 1.1rem;
  margin-top: 25px;
  font-weight: 400;
}

p {
  font-weight: 400;
}

/* Listas */
ul,
ol {
  margin: 15px 0;
  padding-left: 25px;
}

li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* Articles */

.article {
  margin-bottom: 32px;
}

.article p {
  margin-top: 12px;
  text-align: center;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
}

.hero-logo {
  max-width: 100%;
  filter: invert(100%);
}

.hero .container {
  max-width: 800px;
  text-align: center;
}

.hero h1,
.hero p {
  color: white;
}

.hero h1 {
  margin-bottom: 25px;
  font-family: "Cinzel Decorative", serif;
  font-weight: 200;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Divider */
.divider {
  background-color: var(--primary-color);
  color: var(--light-color);
  margin-top: 30px;
  padding: 24px;
  border-radius: 4px;
  transform: skew(-21deg);
  box-shadow: var(--box-shadow);
}

.section-dark .divider {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: skew(21deg);
  font-weight: 700;
}

.divider p {
  text-align: center;
  transform: skew(21deg);
}

.section-dark .divider p {
  transform: skew(-21deg);
}

/* Seção de Contatp */

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.atendimento {
  font-weight: 200;
  font-size: 28px;
}

.contact-item {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 22px;
  gap: 24px;
}

.contact-item button {
  width: 30%;
}

.footnote {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 32px;
}

/* Lista de Artigos */
.articles-list {
  margin-top: 25px;
}

.article-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.article-item:last-child {
  border-bottom: none;
}

.article-item p {
  margin-bottom: 8px;
}

/* Footer */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  margin-top: 32px;
  padding: 16px;
}
.privacy {
  color: var(--light-color);
  padding: 6px 12px;
  border-radius: 12px;
  margin-top: 24px;
  transition: var(--transition);
}
.privacy:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Disclaimer */
.disclaimer {
  background-color: #ecb3a9c4;
  padding: 12px;
  border-radius: var(--border-radius);
  border-left: 4px solid #dc35468e;
  transform: skew(-21deg);
  text-align: center;
}

.disclaimer h3 {
  color: #721c24;
  transform: skew(21deg);
  margin-top: 0;
}

.disclaimer p {
  color: #721c24;
  transform: skew(21deg);
  font-size: 0.7rem;
  font-weight: 700;
}

.copyright p {
  font-weight: 200;
}

/* Indicadores de navegação */
.slide-indicators {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(185, 185, 185);
  cursor: pointer;
  transition: var(--transition);
}

.slide-indicator.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

/* AddOns */

/* From Uiverse.io by Spacious74 */
/* From Uiverse.io by mrhyddenn */
button {
  background: #fff;
  border: none;
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
  box-shadow: var(--box-shadow);
}

button a {
  display: inline-block;
  transform: skew(21deg);
  transition: all 0.5s;
  color: var(--primary-color);
  text-decoration: none;
}

button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: var(--secondary-color);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

button:hover a {
  color: var(--light-color);
}

button:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

.wpp {
  position: fixed;
  bottom: 20px;
  right: 60px;
  background: #25d366;
  width: 80px;
  height: 80px;
  padding: 16px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.wpp:hover {
  transform: translateY(-4px);
  box-shadow: 2px 8px 12px rgba(0, 0, 0, 0.3);
}
