@charset "UTF-8";
/* ==========================================================================
   Elo Protect - Corretora de Seguros
   Institutional Website - Mobile First
   ========================================================================== */
/* --------------------------------------------------------------------------
   Variables
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Base / Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a2e;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0d3b66;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #1a5a9e;
}
a:focus-visible {
  outline: 2px solid #0d3b66;
  outline-offset: 2px;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
button:focus-visible {
  outline: 2px solid #0d3b66;
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Skip Link (Accessibility)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: #0d3b66;
  color: #ffffff;
  font-weight: 500;
  border-radius: 4px;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Header - Layout referência: navbar flutuante
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  height: 64px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .header {
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem * 2);
    max-width: 1280px;
    right: auto;
  }
}
@media (min-width: 1280px) {
  .header {
    width: calc(100% - 3rem * 2);
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.header__logo {
  display: flex;
  flex-direction: column;
  color: #0d3b66;
  font-weight: 700;
}
.header__logo:hover {
  color: #0d3b66;
}
.header__logo-text {
  font-size: 1.25rem;
  line-height: 1.25;
}
.header__logo-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a4a68;
}
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 1rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.header__menu-toggle:hover {
  background: #f8f9fa;
}
@media (min-width: 768px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #0d3b66;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__menu-toggle[aria-expanded=true] .header__menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu-toggle[aria-expanded=true] .header__menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle[aria-expanded=true] .header__menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: calc(1rem + 64px + 2rem) 1.5rem 3rem;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .header__nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    background: transparent;
    overflow: visible;
  }
}
.header__nav.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .header__nav-list {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
}
.header__nav-link {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a2e;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .header__nav-link {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }
}
.header__nav-link:hover {
  color: #0d3b66;
}

/* --------------------------------------------------------------------------
   Visually hidden (a11y)
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Hero - Layout referência: tagline minimalista + bloco de especialidade
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: center;
  padding: calc(1rem + 64px + 3rem) 1.5rem 3rem;
  background: linear-gradient(135deg, #0d3b66 0%, #082847 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
  }
}
.hero--compact {
  padding: calc(1rem + 64px + 2rem) 1.5rem 3rem;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1024px;
  margin: 0 auto;
  margin-top: 2rem;
}
.hero__tagline {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .hero__tagline {
    font-size: 1.5rem;
  }
}
.hero__cta-link {
  display: inline-block;
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 600;
  color: #40916c;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.hero__cta-link:hover {
  color: #ffffff;
}
.hero__cta-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.hero__title {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__subtitle {
  margin: 0 0 3rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.hero__cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.hero__cta--primary {
  background: #2d6a4f;
  color: #ffffff;
}
.hero__cta--primary:hover {
  background: #40916c;
}
.hero__cta--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.hero__cta--secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.hero__decoration {
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Value Props - Layout referência: 3 cards em destaque
   -------------------------------------------------------------------------- */
.value-props {
  padding: 4rem 1.5rem;
  background: #ffffff;
}
@media (min-width: 768px) {
  .value-props {
    padding: 5rem 1.5rem;
  }
}
.value-props__container {
  max-width: 1280px;
  margin: 0 auto;
}
.value-props__title {
  margin: 0 0 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0d3b66;
  text-align: center;
}
.value-props__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .value-props__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.value-card {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2d6a4f;
}
.value-card__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d3b66;
}
.value-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a68;
}

/* --------------------------------------------------------------------------
   Services - Layout referência: cards com lista de itens
   -------------------------------------------------------------------------- */
.services {
  padding: 4rem 1.5rem;
  background: #f0f4f8;
}
@media (min-width: 768px) {
  .services {
    padding: 5rem 1.5rem;
  }
}
.services__container {
  max-width: 1280px;
  margin: 0 auto;
}
.services__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0d3b66;
  text-align: center;
}
.services__intro {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #4a4a68;
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.services__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.service-card__icon {
  color: #0d3b66;
  margin-bottom: 1.5rem;
}
.service-card__title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d3b66;
}
.service-card__list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a68;
}
.service-card__list li {
  margin-bottom: 0.5rem;
}
.service-card__description {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a68;
}
.service-card__link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #2d6a4f;
}
.service-card__link:hover {
  color: #40916c;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Differentiators
   -------------------------------------------------------------------------- */
.differentiators {
  padding: 4rem 1.5rem;
  background: #ffffff;
}
@media (min-width: 768px) {
  .differentiators {
    padding: 5rem 1.5rem;
  }
}
.differentiators__container {
  max-width: 1280px;
  margin: 0 auto;
}
.differentiators__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0d3b66;
  text-align: center;
}
.differentiators__intro {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #4a4a68;
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.differentiators__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .differentiators__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.diff-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2d6a4f;
}
.diff-item__number {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2d6a4f;
  opacity: 0.8;
}
.diff-item__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d3b66;
}
.diff-item__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a68;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  padding: 4rem 1.5rem;
  background: #f0f4f8;
}
@media (min-width: 768px) {
  .testimonials {
    padding: 5rem 1.5rem;
  }
}
.testimonials__container {
  max-width: 1280px;
  margin: 0 auto;
}
.testimonials__title {
  margin: 0 0 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0d3b66;
  text-align: center;
}
.testimonials__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.testimonial {
  margin: 0;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #2d6a4f;
}
.testimonial__text {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #1a1a2e;
  font-style: italic;
}
.testimonial__author {
  font-style: normal;
  font-size: 1rem;
  color: #4a4a68;
}
.testimonial__author cite {
  font-style: normal;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Process - Layout referência: passos numerados (01, 02, 03)
   -------------------------------------------------------------------------- */
.process {
  padding: 4rem 1.5rem;
  background: #f0f4f8;
}
@media (min-width: 768px) {
  .process {
    padding: 5rem 1.5rem;
  }
}
.process__container {
  max-width: 1280px;
  margin: 0 auto;
}
.process__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0d3b66;
  text-align: center;
}
.process__intro {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #4a4a68;
  text-align: center;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.process__steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.process-step {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.process-step__number {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2d6a4f;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.process-step__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d3b66;
}
.process-step__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a4a68;
}

/* --------------------------------------------------------------------------
   CTA Section - Layout referência: chamada forte antes do contato
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 3rem 1.5rem;
  background: #0d3b66;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 4rem 1.5rem;
  }
}
.cta-section__container {
  max-width: 1024px;
  margin: 0 auto;
}
.cta-section__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .cta-section__title {
    font-size: 2.5rem;
  }
}
.cta-section__text {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.75;
  opacity: 0.95;
}
.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 480px) {
  .cta-section__actions {
    flex-direction: row;
  }
}
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-section__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.cta-section__btn--primary {
  background: #2d6a4f;
  color: #ffffff;
}
.cta-section__btn--primary:hover {
  background: #40916c;
  color: #ffffff;
}
.cta-section__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.cta-section__btn--secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   Service Area
   -------------------------------------------------------------------------- */
.service-area {
  padding: 3rem 1.5rem;
  background: #ffffff;
}
@media (min-width: 768px) {
  .service-area {
    padding: 4rem 1.5rem;
  }
}
.service-area__container {
  max-width: 1280px;
  margin: 0 auto;
}
.service-area__title {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #0d3b66;
  text-align: center;
}
.service-area__text {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #4a4a68;
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.service-area__text:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  padding: 4rem 1.5rem;
  background: #0d3b66;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact {
    padding: 5rem 1.5rem;
  }
}
.contact__container {
  max-width: 1024px;
  margin: 0 auto;
}
.contact__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.contact__intro {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  text-align: center;
  opacity: 0.9;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 480px) {
  .contact__channels {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.contact__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  transition: background 0.3s ease;
}
.contact__channel:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.contact__channel:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.contact__channel--whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
}
.contact__channel-icon {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.contact__channel-label {
  font-weight: 600;
}
.contact__channel-value {
  font-size: 1rem;
  opacity: 0.95;
}
.contact__form-wrapper {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  color: #1a1a2e;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    padding: 3rem;
  }
}
.contact__form-title {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0d3b66;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form__label {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a2e;
}
.contact-form__input, .contact-form__textarea {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-family: inherit;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #0d3b66;
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.15);
}
.contact-form__input.is-invalid, .contact-form__textarea.is-invalid {
  border-color: #dc3545;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form__error {
  font-size: 0.875rem;
  color: #dc3545;
  min-height: 1.25rem;
}
.contact-form__submit {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  background: #2d6a4f;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.contact-form__submit:hover {
  background: #40916c;
}
.contact-form__submit:focus-visible {
  outline: 2px solid #0d3b66;
  outline-offset: 2px;
}
.contact-form__feedback {
  margin: 0;
  font-size: 1rem;
  min-height: 1.5rem;
}
.contact-form__feedback.is-success {
  color: #2d6a4f;
  font-weight: 500;
}
.contact-form__feedback.is-error {
  color: #dc3545;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 3rem 1.5rem;
  background: #1a1a2e;
  color: #ffffff;
  text-align: center;
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__copyright {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}
.footer__area {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  opacity: 0.85;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.footer__nav a {
  color: #ffffff;
  font-size: 1rem;
}
.footer__nav a:hover {
  opacity: 0.9;
  text-decoration: underline;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   Developer Credit - Brunno Mota (integrated in footer)
   -------------------------------------------------------------------------- */
.developer-credit {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 0;
}
.developer-credit .developer-credit__link {
  color: #ff6b9d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.developer-credit .developer-credit__link .developer-credit__logo {
  display: inline-flex;
  align-items: center;
}
.developer-credit .developer-credit__link .developer-credit__logo svg {
  height: 24px;
  width: auto;
  transition: transform 0.3s ease, fill 0.3s ease, color 0.3s ease;
  filter: brightness(0) saturate(100%) invert(88%) sepia(12%) saturate(186%) hue-rotate(169deg) brightness(103%) contrast(92%);
  color: rgba(255, 255, 255, 0.9);
  fill: currentColor;
}
.developer-credit .developer-credit__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b9d;
  transition: width 0.3s ease;
}
.developer-credit .developer-credit__link:hover {
  color: #fff;
}
.developer-credit .developer-credit__link:hover .developer-credit__logo svg {
  transform: scale(1.1);
  filter: none;
  color: #ff6b9d;
  fill: #ff6b9d;
}
.developer-credit .developer-credit__link:hover::after {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .developer-credit {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .developer-credit {
    font-size: 0.7rem;
  }
}
/* --------------------------------------------------------------------------
   GSAP Animation Utility
   -------------------------------------------------------------------------- */
.gs-hidden {
  opacity: 0;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .gs-hidden {
    opacity: 1;
    visibility: visible;
  }
}
/* --------------------------------------------------------------------------
   Floating Action Button - WhatsApp
   -------------------------------------------------------------------------- */
.fab-whatsapp {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fab-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}
.fab-whatsapp:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/*# sourceMappingURL=styles.css.map */
