/* ===== VARIABLES ===== */
:root {
  --primary-color: #0047AB;
  --primary-light: #1E90FF;
  --primary-dark: #003380;
  --secondary-color: #4169E1;
  --accent-gold: #D4AF37;
  --text-color: #1a1a2e;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #0a0e1a;
  --bg-darker: #050810;
  --bg-card: #111827;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section--dark {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--text-white);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section--dark .section__title {
  color: var(--text-white);
}

.section__description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
}

.section--dark .section__description {
  color: rgba(255, 255, 255, 0.7);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.025em;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent-gold), #B8941E);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.button--outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
}

.button--full {
  width: 100%;
  justify-content: center;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.logo-tagline {
  font-size: 0.625rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav__list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: var(--transition);
  position: relative;
}

.nav__link:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--text-white);
}

.nav__link:hover:after,
.nav__link.active-link:after {
  width: 100%;
}

.nav__cta {
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--accent-gold), #B8941E);
  color: var(--bg-dark);
  border-radius: 0.5rem;
  font-weight: 600;
}

.nav__cta:after {
  display: none;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-white);
}

/* ===== HOME ===== */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
}

.home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.home::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 71, 171, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.home__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.home__container {
  position: relative;
  z-index: 1;
}

.home__content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.home__subtitle {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.home__title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.home__description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.home__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator span {
  width: 4px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: 0; }
  50% { transform: translateY(15px); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.15; }
}

/* ===== SOBRE ===== */
.sobre {
  background: var(--bg-light);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre__image {
  position: relative;
}

.image__placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.placeholder__content {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.placeholder__content svg {
  stroke: var(--accent-gold);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.placeholder__content p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.sobre__badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: linear-gradient(135deg, var(--accent-gold), #B8941E);
  color: var(--bg-dark);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}

.badge__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.badge__text {
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.sobre__content {
  max-width: 600px;
}

.sobre__text {
  font-size: 1.0625rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.sobre__features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.1), rgba(212, 175, 55, 0.1));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature__icon svg {
  stroke: var(--primary-color);
  width: 24px;
  height: 24px;
}

.feature__item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature__item p {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ===== SERVIÇOS ===== */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.service__card {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service__card:hover::before {
  transform: scaleX(1);
}

.service__card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.service__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.1), rgba(212, 175, 55, 0.1));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service__icon svg {
  stroke: var(--accent-gold);
}

.service__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.service__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ===== PRODUTOS ===== */
.produtos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.produtos__grid--corporate {
  grid-template-columns: repeat(3, 1fr);
}

.produto__card {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}

.produto__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.produto__card--corporate {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.1);
}

.produto__card--corporate:hover {
  border-color: var(--accent-gold);
}

.produto__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.produto__card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
}

.produto__card--corporate h3 {
  color: var(--text-white);
}

/* ===== PARCEIROS ===== */
.parceiros {
  background: var(--bg-light);
}

.parceiros__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.parceiro__logo {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
  color: var(--text-white);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.parceiro__logo:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow);
}

/* ===== CONTATO ===== */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 4rem;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info__card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.info__card:hover {
  border-color: var(--accent-gold);
}

.info__icon {
  font-size: 1.75rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.2), rgba(212, 175, 55, 0.2));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info__card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.info__card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.social__wrapper h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-white);
}

.social__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social__link {
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  text-decoration: none;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.social__link:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.contato__form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 1.125rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-white);
  transition: var(--transition);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.form__group select option {
  background: var(--bg-darker);
  color: var(--text-white);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--bg-darker) 0%, #000000 100%);
  color: var(--text-white);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer__logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer__description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.footer__links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.footer__links ul {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.875rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9375rem;
}

.footer__links a:hover {
  color: var(--accent-gold);
  padding-left: 0.5rem;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9375rem;
}

.footer__social a:hover {
  color: var(--accent-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
  .section {
    padding: 5rem 0;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .home__title {
    font-size: 2.75rem;
  }

  .sobre__grid,
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre__badge {
    right: 1rem;
  }

  .servicos__grid,
  .produtos__grid--corporate {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-dark);
    padding: 6rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .nav__toggle,
  .nav__close {
    display: block;
  }

  .nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
  }

  .home__buttons {
    flex-direction: column;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section__title {
    font-size: 1.875rem;
  }

  .home__title {
    font-size: 2.25rem;
  }

  .home__description {
    font-size: 1.0625rem;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .social__links {
    grid-template-columns: 1fr;
  }
}
/* === CARD FLIP === */
.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 200px;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.flip-card.flip-active .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flip-card-front {
  background: var(--bg-light);
}

.flip-card-back {
  background: var(--primary-color);
  color: #fff;
  transform: rotateY(180deg);
  text-align: center;
  padding: 1.5rem;
}
/* ===== CORREÇÕES PARA FLIP-CARDS CORPORATE & SECTIONS ESCURAS ===== */

/* Quando o flip-card estiver dentro de um produto corporate,
   garanta que a frente use o background escuro e o texto branco */
.produto__card--corporate .flip-card-front {
  background: var(--bg-card) !important;
  color: var(--text-white);
}

.produto__card--corporate .flip-card-front h3,
.produto__card--corporate .flip-card-front .produto__icon {
  color: var(--text-white);
}

/* Garanta que o verso também mantenha contraste no corporate */
.produto__card--corporate .flip-card-back {
  background: linear-gradient(135deg, rgba(0,71,171,0.95), rgba(36,60,128,0.95));
  color: var(--text-white);
}

/* Reforça cores para seções escuras (caso alguma regra anterior tenha sido sobrescrita) */
.section--dark .section__label { color: var(--accent-gold); }
.section--dark .section__title { color: var(--text-white); }
.section--dark .section__description { color: rgba(255,255,255,0.85); }

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
/* ===== WHATSAPP BUTTON FIX ===== */
.whatsapp-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: #25D366; /* verde oficial */
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    cursor: pointer;
    z-index: 1000;

    padding: 0;          /* remove qualquer sobra */
    overflow: hidden;    /* previne vazamentos de fundo */
    border: none;        /* remove borda azul/escura em alguns browsers */

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.whatsapp-fab svg {
    width: 32px;
    height: 32px;
    fill: white !important;
    display: block;     /* impede deslocamento */
    margin: 0;          /* remove alinhamento estranho */
}

/* ===== LOGO BRANDÃO NO HEADER ===== */
.nav__logo {
    display: flex;
    align-items: center;
    height: 60px; /* mantém o header alinhado */
}

.nav__logo .logo-img {
    height: 55px;      /* ajuste ideal */
    width: auto;       /* mantém proporção */
    object-fit: contain;
    display: block;
}

/* Em telas pequenas diminui um pouco */
@media (max-width: 480px) {
    .nav__logo .logo-img {
        height: 45px;
    }
}
/* ======== LOGO + TEXTOS DO HEADER ======== */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.9rem; /* distancia entre logo e textos */
    text-decoration: none;
}

.nav__logo .logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Textos ao lado do logo */
.logo-title-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff; /* branco elegante */
    font-family: "Playfair Display", serif;
}

.logo-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d4af37; /* dourado */
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Ajustes para mobile */
@media (max-width: 480px) {
    .nav__logo .logo-img {
        height: 42px;
    }
    .logo-title {
        font-size: 1.3rem;
    }
    .logo-subtitle {
        font-size: 0.7rem;
    }
}
.logo-title-block {
    display: flex;
    flex-direction: column;
    line-height: 1.15; /* aumenta o espaço vertical */
    gap: 4px; /* espaçamento entre as duas linhas */
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    margin-bottom: 2px; /* espaçamento adicional */
}

.logo-subtitle {
    font-size: 0.80rem;
    font-weight: 600;
    color: #2681a5;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.sobre__image {
    position: relative;
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
    display: block;
}
/* ===== LOGO WALL – TAMANHO MAIOR ===== */
.logos-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* antes era 120px */
  gap: 2.5rem; /* espaçamento um pouco maior */
  align-items: center;
  justify-items: center;
  padding: 2.5rem 0;
}

/* aumenta largura e altura máxima dos logos */
.logos-wall img {
  max-width: 200px;   /* AUMENTADO */
  max-height: 110px;  /* AUMENTADO */
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  transition: transform .15s ease, opacity .15s ease;
}

.logos-wall img:hover {
  transform: translateY(-4px) scale(1.05);
  opacity: 1;
}

/* Mobile: mantém maior que antes, mas proporcional */
@media (max-width: 480px) {
  .logos-wall img {
    max-width: 150px;
    max-height: 90px;
  }
}

/* Telas grandes: aumenta ainda mais */
@media (min-width: 1300px) {
  .logos-wall img {
    max-width: 230px;
    max-height: 130px;
  }
}
/* ===== ALINHAR NÚMERO À ESQUERDA E ÍCONE À DIREITA ===== */
.service__card {
    position: relative;
    padding-top: 3rem; /* espaço para a linha do topo */
}

/* cria uma linha invisível no topo do card */
.service__card::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    opacity: 0;
}

/* linha superior contendo número + ícone */
.service__card-top {
    position: absolute;
    top: 1.8rem;
    left: 1.8rem;
    right: 1.8rem;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* mover o número e ícone para dentro do novo topo */
.service__number,
.service__icon {
    position: relative;
}

/* remove espaçamento original para não quebrar o layout */
.service__number {
    margin-bottom: 1rem !important;
}

.service__icon {
    margin-bottom: 1rem !important;
}
/* Linha do topo do card: número à esquerda, ícone à direita */
.service__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Número grande à esquerda */
.service__number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #d4af37; /* dourado */
    opacity: 0.25; /* estilo leve igual ao que você já tinha */
}

/* Ícone à direita */
.service__icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1c222b, #0f141b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service__icon svg {
    width: 28px;
    height: 28px;
}
/* ===== DESKTOP (continua grid normal) ===== */
.logos-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
}

/* ===== MOBILE: vira carrossel deslizando com o dedo ===== */
@media (max-width: 768px) {
  .logos-wall {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1.5rem 1rem;

    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .logos-wall::-webkit-scrollbar {
    display: none;
  }

  .logos-wall img {
    flex: 0 0 auto;
    width: 140px;
    scroll-snap-align: center;
  }
}
/* --- Ajuste do texto da logo para MOBILE --- */
@media (max-width: 768px) {
  .logo-text-wrap .logo-title {
    font-size: 0.3rem;   /* tamanho menor */
  }

  .logo-text-wrap .logo-subtitle {
    font-size: 0.65rem;  /* bem discreto */
    letter-spacing: 1.5px;
  }

  .nav__logo img {
    width: 38px; /* opcional: reduz um pouco o logo também */
  }

  .logo-text-wrap {
    margin-left: 8px; /* aproxima mais o texto do logo, deixa mais elegante */
  }
}
