* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remover o header dos mobiles */

@media (max-width: 768px) {
  .header {
    display: none;
  }
}

/* Remover o header dos mobiles */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #374151;
}

.page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #fdf2f8 0%, #eff6ff 50%, #fce7f3 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}



/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 1;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.menu-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.menu-btn:hover {
    background: var(--secondary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    margin-right: auto; /* Empurra a logo para a esquerda */
    padding-left: 20px; /* Espaçamento da borda */
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: glow 2s ease-in-out infinite alternate;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding: 0;
    line-height: 1;
}


.nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  font-size: 1.1rem;
  font-family: 'Oswald';
  margin: 0 15px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #000000;
  /* ou sua cor desejada */
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #ff4eb5;
  /* Rosa */
  transform: scaleX(0);
}


.nav-link:hover::after {
  transform: scaleX(1);
}


.nav-link:hover {
  color: #ff4eb5;
  /* opcional, muda a cor do texto também */
}

/* Header */


/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.hero-description {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-description p {
    font-size: 1.25rem;
    line-height: 1.75;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand-name {
    font-weight: bold;
    color: #9333ea;
}

.highlight {
    font-weight: 600;
    color: #ec4899;
}

/* Tabs Section */
.tabs-section {
    max-width: 64rem;
    margin: 0 auto 4rem;
}

.tabs-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #e5d3f3;
    background: transparent;
    color: #9333ea;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #f3e8ff;
}

.tab-button.active {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tab-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #e5d3f3;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 150px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-panel h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7c3aed;
    margin-bottom: 1rem;
}

.tab-panel p {
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Founder Section */
.founder-section {
    max-width: 80rem;
    margin: 0 auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #e5d3f3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.founder-image {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    padding: 2rem;
    text-align: center;
    color: white;
}

.founder-image img {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.founder-image h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.9;
}

.founder-content {
    padding: 2rem 3rem;
}

.founder-content h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #7c3aed;
    margin-bottom: 1.5rem;
}

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 1.75;
}

.founder-quote {
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #9333ea;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (min-width: 1024px) {
    .founder-card {
        flex-direction: row;
    }
    
    .founder-image {
        flex: 1;
        min-width: 33.333333%;
    }
    
    .founder-content {
        flex: 2;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description p {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .tab-button {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .founder-content {
        padding: 1.5rem;
    }
    
    .founder-content h2 {
        font-size: 1.5rem;
    }

 
/* Rodapé */

.footer {
  background-color: #000000;
  padding: 30px 0 20px 0;
  font-size: 0.9rem;
  color: #ffffff;
  border-top: 1px solid #333333;
  width: 100%;
  margin: 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
}

/* Brand Section */
.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 200px;
}

.footer .footer-brand h3 {
  font-size: 1.3rem;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.footer .logo-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Description */
.footer .footer-description {
  flex: 2 1 250px;
  margin: 0;
  font-size: 0.85rem;
  color: #cccccc;
  line-height: 1.5;
  max-width: 300px;
}

/* Links Section */
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 200px;
}

.footer .footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .footer-link {
  color: #dddddd;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  padding: 2px 0;
}

.footer .footer-link:hover {
  color: #ff69b4;
  text-decoration: underline;
}

/* Social Icons */
.footer .social-icons {
  display: flex;
  gap: 20px;
  flex: 1 1 250px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer .social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

.footer .social-icons img:hover {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer .footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #aaaaaa;
  padding-top: 20px;
  border-top: 1px solid #333333;
  margin-top: 20px;
}

.footer .feito-por {
  text-align: center;
  font-size: 0.7rem;
  color: #888888;
  margin-top: 8px;
  font-style: italic;
}

/* Tablets */
@media (max-width: 1024px) {
  .footer .footer-content {
    gap: 25px;
  }
  
  .footer .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer .social-icons {
    justify-content: center;
    gap: 25px;
  }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
  .footer {
    padding: 25px 0 15px 0;
  }
  
  .footer .container {
    padding: 0 15px;
  }
  
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  
  .footer .footer-brand {
    justify-content: center;
    flex: none;
    width: 100%;
  }
  
  .footer .footer-description {
    flex: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .footer .footer-links {
    flex: none;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer .footer-link-group {
    flex-direction: row;
    gap: 20px;
  }
  
  .footer .social-icons {
    flex: none;
    width: 100%;
    justify-content: center;
    gap: 25px;
  }
}

/* Mobile Medium (480px) */
@media (max-width: 480px) {
  .footer {
    padding: 20px 0 15px 0;
    font-size: 0.85rem;
  }
  
  .footer .container {
    padding: 0 12px;
  }
  
  .footer .footer-content {
    gap: 20px;
  }
  
  .footer .footer-brand h3 {
    font-size: 1.1rem;
  }
  
  .footer .logo-icon img {
    width: 45px;
    height: 45px;
  }
  
  .footer .footer-description {
    font-size: 0.8rem;
    padding: 0 10px;
  }
  
  .footer .footer-links {
    gap: 15px;
  }
  
  .footer .footer-link-group {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .footer .footer-link {
    font-size: 0.8rem;
  }
  
  .footer .social-icons {
    gap: 20px;
  }
  
  .footer .social-icons img {
    width: 35px;
    height: 35px;
  }
  
  .footer .footer-bottom {
    font-size: 0.7rem;
    padding-top: 15px;
  }
  
  .footer .feito-por {
    font-size: 0.65rem;
  }
}

/* Mobile Small (320px) */
@media (max-width: 360px) {
  .footer .container {
    padding: 0 10px;
  }
  
  .footer .footer-content {
    gap: 18px;
  }
  
  .footer .footer-brand h3 {
    font-size: 1rem;
  }
  
  .footer .logo-icon img {
    width: 40px;
    height: 40px;
  }
  
  .footer .footer-description {
    font-size: 0.75rem;
  }
  
  .footer .footer-link {
    font-size: 0.75rem;
  }
  
  .footer .social-icons {
    gap: 15px;
  }
  
  .footer .social-icons img {
    width: 32px;
    height: 32px;
  }
}

/* Correção para quemsomos.css - largura excessiva */
.page-container .footer {
  width: 100% !important;
  left: auto !important;
  position: static !important;
}

/* Garantir que o footer não cause overflow horizontal */
.footer, .footer * {
  box-sizing: border-box;
}

/* Prevenir quebras de layout em containers pequenos */
.footer .footer-content > * {
  min-width: 0;
  word-wrap: break-word;
}

.footer .footer-link:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer .social-icons a:focus {
  outline: 2px solid #ff69b4;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Melhorar contraste em telas pequenas */
@media (max-width: 480px) {
  .footer .footer-link {
    color: #eeeeee;
  }
  
  .footer .footer-description {
    color: #dddddd;
  }
}

/* Rodapé */

}