/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FEFEFE;
}

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

/* ===== Tipografia ===== */
:root{
  --font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #111827; /* slate-900 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4{
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  color: #0f172a; /* slate-950 */
}

/* ===== Hero (Capa) ===== */
.hero{
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
  background-image: image-set(
    url("../img/capa-inkremoval.webp") type("image/webp"),
    url("../img/capa-inkremoval.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  overflow: hidden;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
}

.hero-content{
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-inline: auto;
  color: #fff;
}

.hero h1{
  font-size: clamp(2rem, 3.2vw + 1rem, 3.5rem);
  margin-bottom: .75rem;
}

.hero p{
  font-size: clamp(1rem, 1.2vw + .5rem, 1.25rem);
  opacity: .95;
  margin-bottom: 1.75rem;
}

.hero-cta{
  display: inline-block;
  background: #22c55e;            /* verde WhatsApp vibe */
  color: #0b3d24;
  font-weight: 600;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 24px rgba(34,197,94,.25);
}

.hero-cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(34,197,94,.32);
}

/* ===== Navegação (opcional – harmonizar com a nova fonte) ===== */
.nav-logo{
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .2px;
}
.nav-menu a{
  font-family: var(--font-body);
  font-weight: 500;
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(224, 187, 228, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #957DAD;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo .logo-link {
    text-decoration: none;
    color: #957DAD;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #957DAD;
}

.nav-cta {
    background: #957DAD !important;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #7A6B8D !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('../images/capa-inkremoval.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(224, 187, 228, 0.3) 0%, rgba(149, 125, 173, 0.4) 100%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFFFFF; /* Alterado para branco conforme solicitado */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: #FFFFFF; /* Alterado para branco conforme solicitado */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #FF6B6B;
    color: white;
    border-color: #FF6B6B;
}

.btn-primary:hover {
    background: #FF5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #957DAD;
    transform: translateY(-3px);
}

/* Seções */
section {
    padding: 5rem 0;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #957DAD;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #E0BBE4;
}

/* Procedimento */
.procedure {
    background: #F8F9FA;
}

.procedure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.procedure-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.procedure-steps h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #957DAD;
    margin-bottom: 2rem;
}

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

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #957DAD;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Tecnologia */
.technology {
    background: #FFF;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.tech-image {
    text-align: center;
}

.tech-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-description p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #957DAD;
    margin-bottom: 1.5rem;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E0BBE4;
    font-weight: bold;
    font-size: 1.2rem;
}

.tech-specs h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #957DAD;
    margin-bottom: 2rem;
}

.spec-item {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #E0BBE4;
}

.spec-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.spec-item p {
    color: #666;
    line-height: 1.6;
}

/* Galeria */
.gallery {
    background: #F8F9FA;
}

.gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* FAQ */
.faq {
    background: #FFF;
}

.faq p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E0BBE4;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #FFF;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #F8F9FA;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #957DAD;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    text-align: left;
    margin: 0;
    line-height: 1.7;
    color: #666;
}

/* Contato */
.contact {
    background: white; /* Alterado para branco conforme solicitado */
    color: #333; /* Alterado para cor escura para contraste */
    text-align: center;
}

.contact h2 {
    color: #957DAD; /* Revertido para a cor padrão do h2 */
}

.contact h2::after {
    background: #E0BBE4; /* Revertido para a cor padrão do h2::after */
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #333; /* Garantir que o texto do parágrafo seja legível */
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366; /* Revertido para verde */
    color: white; /* Revertido para branco */
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none; /* Removido a borda branca */
}

.whatsapp-button:hover {
    background: #1DA851; /* Revertido para hover verde escuro */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); /* Revertido para sombra verde */
}

/* Animação pulsante para botões WhatsApp */
.whatsapp-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer p {
    margin: 0;
}

.social-links a {
    color: white;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.social-links a:hover {
    color: #E0BBE4;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo .logo-img {
        height: 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .procedure-content,
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}



/* Estilos adicionais para melhorias visuais */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Melhorias nas transições */
a {
    transition: all 0.3s ease;
}

/* Otimizações de performance */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Melhorias na acessibilidade */
button, a {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

button:focus, a:focus {
    outline: 2px solid #957DAD;
    outline-offset: 2px;
}

/* Animação suave para elementos */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Melhorias na galeria */
.gallery-item img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Melhoria no texto de contato */
.contact {
    padding: 6rem 0;
}

/* Estilos para mobile */
@media (max-width: 480px) {
    .nav-logo span {
        display: none;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
}
