@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  line-height: 1.6;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
}

h2 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
}

p {
  margin: 0 0 1rem;
  max-width: 65ch;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:hover {
  text-decoration: none;
}
a {
  color: #3b7ba8;
  transition: all 0.3s ease;
}
a:hover {
  color: rgb(45.7444933921, 95.3656387665, 130.2555066079);
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
button:focus {
  outline: none;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.navbar {
  background-color: #1a3a52;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}
.logo:hover {
  color: #ffffff;
  transform: translateY(-1px);
}
.logo:hover .logo-img {
  box-shadow: 0 4px 14px rgba(107, 163, 212, 0.45);
}
.logo .logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.logo .logo-text {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .logo {
    gap: 0.5rem;
  }
  .logo .logo-img {
    width: 38px;
    height: 38px;
  }
  .logo .logo-text {
    font-size: 0.95rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-menu li {
  position: relative;
}

.nav-link {
  color: #e8f0f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #6ba3d4;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #6ba3d4;
}
.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger:hover span {
  background-color: #3b7ba8;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    left: -100%;
    top: 70px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 0;
    z-index: 99;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li {
    padding: 1rem 0;
    border-bottom: 1px solid #2d5a7a;
  }
  .nav-menu li:last-child {
    border-bottom: none;
  }
}
.hero {
  background: linear-gradient(135deg, #1a3a52 0%, #3b7ba8 100%);
  background-image: url("../img/inicial.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 100px 1.5rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.55) 0%, rgba(59, 123, 168, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1rem;
}
.hero-content h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 1rem;
  animation: slideInDown 0.8s ease;
  line-height: 1.15;
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideInUp 0.8s ease 0.2s both;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #3b7ba8 0%, #6ba3d4 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #ffffff;
  padding: 14px 38px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  letter-spacing: 0.3px;
  transition: background-position 0.6s ease, transform 0.25s ease, box-shadow 0.3s ease;
  animation: slideInUp 0.8s ease 0.4s both, ctaPulse 2.8s ease-in-out 1.6s infinite;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(59, 123, 168, 0.35);
  isolation: isolate;
}
.cta-button::after {
  content: "→";
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.3s ease;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: -1;
}
.cta-button:hover {
  background-position: 100% 50%;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px rgba(59, 123, 168, 0.55);
  color: #ffffff;
  animation-play-state: paused;
}
.cta-button:hover::after {
  transform: translateX(5px);
}
.cta-button:hover::before {
  left: 125%;
}
.cta-button:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 16px rgba(59, 123, 168, 0.45);
}
.cta-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(59, 123, 168, 0.35), 0 0 0 0 rgba(107, 163, 212, 0.5);
  }
  50% {
    box-shadow: 0 6px 18px rgba(59, 123, 168, 0.35), 0 0 0 14px rgba(107, 163, 212, 0);
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 1rem;
    min-height: 350px;
    background-attachment: scroll;
  }
}
.sobre {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 1.5rem);
  background-color: #3b7ba8;
}
.sobre h2 {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-text h3 {
  color: #6ba3d4;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.about-text p {
  color: #e8f0f6;
  margin-bottom: 1rem;
  max-width: 800px;
}

.about-intro {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background-color: rgba(107, 163, 212, 0.15);
  border-left: 4px solid #6ba3d4;
  border-radius: 5px;
}
.about-intro strong {
  color: #ffffff;
  font-weight: 700;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: 2rem;
}

.mission-box {
  background-color: rgba(255, 255, 255, 0.12);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: 10px;
  border-left: 4px solid #6ba3d4;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mission-box:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.mission-box h3 {
  color: #6ba3d4;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mission-box p {
  color: #e8f0f6;
  line-height: 1.75;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin: 0;
  max-width: none;
}

.statistics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.stat-item {
  background-color: rgba(255, 255, 255, 0.97);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6ba3d4, #3b7ba8);
}
.stat-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.stat-ring {
  --size: clamp(110px, 18vw, 150px);
  --thickness: 10px;
  --value: 0;
  --ring-color: #3b7ba8;
  --track-color: rgba(59, 123, 168, 0.12);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: conic-gradient(var(--ring-color) calc(var(--value) * 1%), var(--track-color) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 1.4s ease-out;
}
@media (prefers-reduced-motion: no-preference) {
  .stat-ring {
    animation: ringFill 1.4s ease-out both;
  }
}

.stat-ring-inner {
  width: calc(100% - var(--thickness) * 2);
  height: calc(100% - var(--thickness) * 2);
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 6px rgba(26, 58, 82, 0.06);
}

.stat-item:nth-child(1) .stat-ring {
  --ring-color: #e74c3c;
}

.stat-item:nth-child(2) .stat-ring {
  --ring-color: #e74c3c;
}

.stat-item:nth-child(3) .stat-ring {
  --ring-color: #f39c12;
}

.stat-item:nth-child(4) .stat-ring {
  --ring-color: #f39c12;
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #1a3a52;
  line-height: 1;
  margin-bottom: 0;
}

.stat-item p {
  color: #2c3e50;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 32ch;
  margin: 0;
}

@keyframes ringFill {
  from {
    background: conic-gradient(var(--ring-color) 0%, var(--track-color) 0);
  }
  to {
    background: conic-gradient(var(--ring-color) calc(var(--value) * 1%), var(--track-color) 0);
  }
}
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.servicos {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 1.5rem);
  background-color: #1a3a52;
}
.servicos h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
}

.servicos-subtitle {
  text-align: center;
  color: #e8f0f6;
  font-size: clamp(1rem, 2vw, 1.35rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  font-weight: 500;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.service-card {
  background-color: rgba(59, 123, 168, 0.9);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-top-color: #3b7ba8;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: #e8f0f6;
  line-height: 1.8;
  font-size: 0.875rem;
}

.differencial-box {
  background: linear-gradient(135deg, #3b7ba8 0%, #1a3a52 100%);
  color: #ffffff;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.8s ease;
}
.differencial-box h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 1rem;
  font-weight: 700;
}
.differencial-box p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.7;
  margin: 0 auto;
  font-weight: 500;
  max-width: 70ch;
}
.differencial-box p strong {
  font-weight: 700;
  text-decoration: underline;
}

.contato {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 1.5rem);
  background-color: #ffffff;
}
.contato h2 {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  color: #1a3a52;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.contact-info h3 {
  color: #1a3a52;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.contact-info p {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 0;
}
.contact-method .icon {
  font-size: 2.2rem;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method h4 {
  color: #1a3a52;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-method p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}
.contact-method a {
  color: #3b7ba8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.contact-method a:hover {
  text-decoration: underline;
  color: rgb(39.1167400881, 81.5484581498, 111.3832599119);
}

.contact-form {
  background-color: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(26, 58, 82, 0.12), 0 2px 8px rgba(26, 58, 82, 0.04);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(59, 123, 168, 0.08);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a3a52, #3b7ba8, #6ba3d4);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.form-group:last-of-type {
  margin-bottom: 0;
}
.form-group label {
  margin-bottom: 0.5rem;
  color: #1a3a52;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}
.form-group label .optional {
  color: #95a5a6;
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 2px solid #e1e8ef;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1a3a52;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
  background-color: #f7fafc;
}
.form-group input:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
  border-color: rgba(59, 123, 168, 0.35);
  background-color: #ffffff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b7ba8;
  box-shadow: 0 0 0 4px rgba(59, 123, 168, 0.12), 0 4px 12px rgba(59, 123, 168, 0.08);
  background-color: #ffffff;
  transform: translateY(-1px);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0b0;
}
.form-group input:not(:placeholder-shown):valid,
.form-group textarea:not(:placeholder-shown):valid {
  border-color: rgba(39, 174, 96, 0.4);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  grid-column: 1/-1;
  line-height: 1.6;
}

.submit-button {
  background: linear-gradient(135deg, #3b7ba8 0%, #1a3a52 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-position 0.5s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
  width: 100%;
  margin-top: 2rem;
  box-shadow: 0 6px 18px rgba(26, 58, 82, 0.25);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: -1;
}
.submit-button:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 58, 82, 0.35);
}
.submit-button:hover::before {
  left: 125%;
}
.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(26, 58, 82, 0.25);
}
.submit-button:focus-visible {
  outline: 3px solid rgba(59, 123, 168, 0.5);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .vision-mission {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .about-image {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-method {
    gap: 1rem;
  }
  .contact-method .icon {
    font-size: 1.8rem;
    min-width: 40px;
  }
}
.fundador {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f7 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.fundador .container {
  max-width: 1200px;
}

.fundador-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .fundador-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.fundador-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.fundador-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(26, 58, 82, 0.15);
  transition: all 0.3s ease;
}
.fundador-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(59, 123, 168, 0.25);
}
@media (max-width: 768px) {
  .fundador-image img {
    max-width: 350px;
  }
}
@media (max-width: 480px) {
  .fundador-image img {
    max-width: 280px;
  }
}

.fundador-text {
  padding: 2rem 0;
}
.fundador-text h2 {
  color: #1a3a52;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 0.5rem;
}
.fundador-text h3 {
  color: #3b7ba8;
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  font-weight: 500;
}
.fundador-text h4 {
  color: #1a3a52;
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.fundador-text h4:first-of-type {
  margin-top: 0;
}

.fundador-bio {
  margin-bottom: 2rem;
}
.fundador-bio p {
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
  font-size: clamp(0.95rem, 1.6vw, 1rem);
  max-width: 800px;
}
.fundador-bio p strong {
  color: #3b7ba8;
  font-weight: 600;
}
.fundador-bio p:last-child {
  margin-bottom: 0;
}

.produto-info {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3b7ba8;
  box-shadow: 0 4px 15px rgba(26, 58, 82, 0.08);
  max-width: 800px;
}
.produto-info h4 {
  margin-top: 0;
}
.produto-info p {
  color: #1a1a1a;
  line-height: 1.7;
  text-align: justify;
  max-width: 100%;
}
.produto-info p strong {
  color: #1a3a52;
  font-weight: 600;
}
.produto-info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .fundador-text {
    padding: 1.5rem 0;
  }
  .fundador-bio p,
  .produto-info p {
    text-align: left;
  }
}
.footer {
  background-color: #1a3a52;
  color: #ffffff;
  padding: 2rem;
}
.footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.footer-logo:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(107, 163, 212, 0.4);
}

.footer-info {
  text-align: center;
}
.footer-info p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s ease;
}
.social-icon .social-label {
  font-size: 0.85rem;
  color: #ffffff;
  opacity: 0.85;
  transition: all 0.3s ease;
  font-weight: 500;
}
.social-icon:hover svg, .social-icon:focus svg {
  transform: rotate(15deg) scale(1.15);
}
.social-icon:hover .social-label, .social-icon:focus .social-label {
  opacity: 1;
}
.social-icon:hover, .social-icon:focus {
  outline: none;
}
.social-icon.linkedin:hover svg {
  background-color: #0077b5;
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}
.social-icon.whatsapp:hover svg {
  background-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.social-icon.email:hover svg {
  background-color: #ea4335;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.4);
}

@media (max-width: 768px) {
  .footer-content {
    gap: 1rem;
  }
  .social-links {
    gap: 1rem;
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
  }
  50% {
    box-shadow: 0 8px 15px rgba(231, 76, 60, 0.2);
    background-color: rgba(231, 76, 60, 0.03);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.15) translateY(-8px);
  }
}

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