* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.3s;
    padding: 0;
}

.logo-btn:hover {
    opacity: 0.8;
}

.logo-img {
    height: 32px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-img {
        height: 64px;
    }
}

.logo-img-large {
    height: 96px;
    width: auto;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #b70990;
}

/* Hero Banner */
.hero {
    padding-top: 64px;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

#banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(to right, #fff, #ffc0cb, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: #d1d5db;
}

.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 32px;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.banner-btn.prev { left: 16px; }
.banner-btn.next { right: 16px; }

.banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 32px;
    background: #b70990;
    border-radius: 4px;
}

/* Sections */
.section {
    padding: 96px 0;
}

.section.dark {
    background: rgba(24, 24, 27, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    color: #b70990;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 16px 0 24px;
    color: #b70990;
}

.divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, #b70990, #a855f7);
    margin: 0 auto;
    border-radius: 2px;
}

.section-text {
    font-size: 20px;
    color: #9ca3af;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.8;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.card {
    padding: 32px;
    background: linear-gradient(135deg, #18181b, #27272a);
    border: 1px solid rgba(113, 113, 122, 0.5);
    border-radius: 16px;
    transition: all 0.3s;
}

.card:hover {
    border-color: rgba(183, 9, 144, 0.5);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(183, 9, 144, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    color: #9ca3af;
}










/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: white;
    transition: all 0.5s;
    cursor: pointer;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card.pink {
    background: linear-gradient(135deg, rgba(183, 9, 144, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(183, 9, 144, 0.2);
}

.service-card.pink:hover {
    border-color: rgba(183, 9, 144, 0.4);
}

.service-card.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.service-card.purple:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card p {
    color: #9ca3af;
    margin-bottom: 24px;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #16a34a;
    font-weight: 600;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    text-align: center;
    padding: 32px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid #27272a;
    border-radius: 16px;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(183, 9, 144, 0.3);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(183, 9, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: #9ca3af;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: #27272a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #b70990;
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 32px 24px;
    border-top: 1px solid #27272a;
    text-align: center;
    color: #6b7280;
}


#quem-somos {
  padding: 100px 20px;
  text-align: center;
}

#quem-somos .container {
  max-width: 800px; /* controla largura do texto */
  margin: 0 auto;   /* centraliza horizontalmente */
}

#quem-somos p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

#quem-somos .impact {
  font-weight: 600;
  margin-top: 30px;
}

#quem-somos .section-footer {
  margin-top: 60px;
}

#quem-somos .section-footer h3 {
  font-size: 22px;
  font-weight: 600;
}



.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #25D366; /* verde WhatsApp */
}

.whatsapp-btn img {
  width: 22px;
  height: 22px;
}




/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-green {
    background: #16a34a;
    color: white;
}

.btn-green:hover {
    background: #15803d;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(183, 9, 144, 0.5);
    color: #b70990;
}

.btn-outline:hover {
    background: rgba(183, 9, 144, 0.1);
}

.btn-save {
    width: 100%;
    background: linear-gradient(to right, #b70990, #a855f7);
    color: white;
    padding: 12px;
    font-size: 16px;
}

/* Login/Admin Panel */
.login-content {
    margin-top: 32px;
}

.error-msg {
    color: #ef4444;
    font-size: 14px;
    margin: 12px 0;
    text-align: center;
}

.admin-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #18181b;
    border-left: 1px solid #27272a;
    z-index: 1000;
    transition: right 0.3s;
    overflow-y: auto;
}

.admin-panel.active {
    right: 0;
}

.admin-content {
    padding: 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-header h2 {
    font-size: 20px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
}

.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: #27272a;
    padding: 4px;
    border-radius: 8px;
}

.tab-btn {
    flex: 1;
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: #9ca3af;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #18181b;
    color: #b70990;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #d1d5db;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b70990;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}