
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');
:root {
  --volt-purple: #502378;
  --volt-purple-dark: #4F2277;
  --volt-aqua: #3A6375;
  --volt-yellow: #FDC220;
  --volt-blue: #82d0f4;
  --white: #FFFFFF;
  --text-color: #333;
  --bg-light: #f9f9f9;
}
* { box-sizing: border-box; margin:0; padding:0; }
a { color: var(--volt-purple); text-decoration: none; }

body {
  font-family: 'Ubuntu', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: var(--white);
  padding-top: 140px;
}

header {
  background: var(--volt-purple);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px; /* podes ajustar o espaçamento */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo-container {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
}

.volt-logo {
  width: 120px;
  height: auto;
}

.religa-te {
  margin-top: 20px;
  font-size: 0.6rem;
  font-weight: bold;
  line-height: 1.2;
  display: flex;
  align-items: center;     /* Centraliza o texto */
}

.religa {
  color: var(--volt-purple);
  background: white;
  padding: 2px 6px;
  border-radius: 3px 3px 0 0;
}

.lisboa {
  color: white;
  background: var(--volt-purple);
  padding: 2px 6px;
  border-radius: 0 0 3px 3px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Navigation links styles */
.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 60px;
    top: 60px;
    background-color: var(--volt-purple);
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
    list-style: none;
    margin: 0; 
}

.nav-links li {
    margin: 10px 0;
}

.nav-links li a {
    color: white !important;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--volt-yellow);
}

/* Close menu button styles */
.close-menu {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Active state for hamburger menu */
.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Remove the responsive styles for the hamburger menu */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-links {
        display: none;
    }
  
}

.center-text {
  text-align: center;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end; 
}

.hero img {
  position: relative;
  top: 20px;
  width: 100%;
  height: 100%;
  max-width: 800px;
  object-fit: cover;
  object-position: top;
  transform: rotate(-2deg);
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;  /* Move para a esquerda cálculo dinâmico */
  transform: translateX(calc(-45% + 10px));
  width: 100%;
  max-width: 800px;
  height: 300px;
  background: var(--volt-yellow);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-text {
  position: relative;
  margin-bottom: 20px;
}
.hero-text h2 {
  background: rgba(80,35,120,0.85);
  color: white;
  padding: 12px 20px;
  font-size:2rem;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 250px;
  right: 2px;
  z-index: 3;
  padding: 10px 15px;
  border-radius: 4px;
}

.hero-overlay h1 {
  display: inline-block;
  padding: 2px 5px;
  margin: 0;
  font-size: 2rem;
  color: var(--volt-purple);
  background-color: var(--volt-blue);
}

.hero-overlay p {
  padding: 2px 5px;
  margin: 10px 0 0;
  font-size: 1.2rem;
  color: var(--volt-purple);
  background-color: var(--volt-blue);
}

.light-bg {
  background: var(--bg-light);
}

.cta {
  text-align: center;
  margin: 40px 0;
}
.cta a {
  display: inline-block;
  background: var(--volt-yellow);
  color: var(--volt-purple);
  padding: 16px 32px;
  font-size: 1.2rem;
  border-radius: 5px;
  font-weight: bold;
}
footer {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Sobre Section lisboa */
section#lisboa {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section#lisboa h2 {
  color: var(--volt-purple);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--volt-purple);
  scroll-margin-top: 100px
}

section#lisboa h3 {
  color: var(--volt-purple-dark);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

section#lisboa h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--volt-purple);
}

section#lisboa p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section#lisboa {
    padding: 0 15px;
  }

  section#lisboa h2 {
    font-size: 2rem;
  }

  section#lisboa h3 {
    font-size: 1.5rem;
  }

  section#lisboa p {
    font-size: 1rem;
  }
}

/* Platforma Section Styles */

section {
  scroll-margin-top: 140px; /* ajusta para a altura do header */
  padding: 48px 20px;
  position: relative;}

section#plataforma {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section#plataforma h2 {
  color: var(--volt-purple);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--volt-purple);
  scroll-margin-top: 100px
}

section#plataforma h3 {
  color: var(--volt-purple-dark);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

section#plataforma h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--volt-purple);
}

section#plataforma h4 {
  color: var(--volt-aqua);
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

section#plataforma p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

section#plataforma ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

section#plataforma li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--text-color);
}

section#plataforma li:before {
  content: "•";
  color: var(--volt-purple);
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section#plataforma {
    padding: 0 15px;
  }

  section#plataforma h2 {
    font-size: 2rem;
  }

  section#plataforma h3 {
    font-size: 1.5rem;
  }

  section#plataforma h4 {
    font-size: 1.3rem;
  }

  section#plataforma p, section#plataforma li {
    font-size: 1rem;
  }
}

/* Sobre Section Styles */
section#sobre {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section#sobre h2 {
  color: var(--volt-purple);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--volt-purple);
  scroll-margin-top: 100px
}

section#sobre h3 {
  color: var(--volt-purple-dark);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

section#sobre h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--volt-purple);
}

section#sobre p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section#sobre {
    padding: 0 15px;
  }

  section#sobre h2 {
    font-size: 2rem;
  }

  section#sobre h3 {
    font-size: 1.5rem;
  }

  section#sobre p {
    font-size: 1rem;
  }
}

/* Notícias Section Styles */
section#noticias {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: var(--white);
}

section#noticias h2 {
  color: var(--volt-purple);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--volt-purple);
}

section#noticias h3 {
  color: var(--volt-purple-dark);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

section#noticias h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--volt-purple);
}

section#noticias p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Estilo específico para o botão de chamada para ação */
.cta-noticias {
  text-align: center;
  margin: 40px 0;
}

.cta-noticias a {
  display: inline-block;
  background: var(--volt-yellow);
  color: var(--volt-purple);
  padding: 16px 32px;
  font-size: 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section#noticias {
    padding: 0 15px;
  }

  section#noticias h2 {
    font-size: 2rem;
  }

  section#noticias h3 {
    font-size: 1.5rem;
  }

  section#noticias p {
    font-size: 1rem;
  }
}