/* ========================================
   SócioFácil - Landing Page Styles PREMIUM
   ======================================== */

/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0F2A44;
    --accent: #2ECC71;
    --bg-light: #F6F8FB;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --border: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

body.admin-bar .header {
    top: 32px;
}

body.admin-bar .hero {
    margin-top: calc(80px + 32px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Header Premium
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

/* Header com sombra ao rolar */
header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.header .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================
   Logo Premium
   ======================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 4px;
}

.logo:hover .logo-icon {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--accent);
}

/* ========================================
   Menu Desktop Premium
   ======================================== */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}

/* Efeito underline suave */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent);
}

/* ========================================
   Menu Mobile PREMIUM
   ======================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    border-radius: 10px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--bg-light);
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Animação hamburger → X premium */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7.5px);
    background: var(--accent);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7.5px);
    background: var(--accent);
}

/* Overlay premium com blur */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 42, 68, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* CTA Mobile separado */
.btn-mobile-cta {
    display: none;
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border-left: 1px solid rgba(229, 231, 235, 0.5);
        
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2.5rem 2rem;
        gap: 0;
        
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 10002;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-menu a {
        font-size: 1.15rem;
        font-weight: 600;
        padding: 1rem 1.2rem;
        border-radius: 12px;
        transition: var(--transition);
        display: block;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: var(--bg-light);
        color: var(--accent);
        transform: translateX(8px);
    }

    /* CTA Button no menu mobile */
    .btn-mobile-cta {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: auto;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* ========================================
   Buttons Premium
   ======================================== */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.btn-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-store {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* 🔥 centraliza horizontalmente */
    text-align: center;      /* 🔥 garante texto central */
    gap: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(15, 42, 68, 0.15);
}
.btn-store:hover {
    background: #1a4d7a;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 42, 68, 0.25);
}

.btn-store:active {
    transform: translateY(-1px);
}

.btn-store.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.05rem;
}
.btn-store span {
    line-height: 1.3;
    text-align: center; /* 🔥 era left */
    display: block;
}

.btn-store span {
    line-height: 1.3;
    text-align: left;
}

.badge-ios {
	min-height: 64px; 
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

/* ========================================
   Hero Section Premium
   ======================================== */
.hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f0f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

/* Efeito destaque no span */
.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(46, 204, 113, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ========================================
   Mockup Premium
   ======================================== */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.app-screen {
    width: 100%;
    max-width: 320px;
    background: var(--primary);
    border-radius: 42px;
    padding: 14px;
    box-shadow: 
        0 20px 50px rgba(15, 42, 68, 0.25),
        0 8px 16px rgba(15, 42, 68, 0.15);
    position: relative;
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
}

.app-screen:hover {
    transform: rotateY(5deg) rotateX(2deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.app-screenshot {
    width: 100%;
    height: auto;
    min-height: 600px;
    background: #f8f9fa;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screenshot img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ========================================
   Features Section Premium
   ======================================== */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   CTA Section Premium
   ======================================== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a4d7a 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.cta-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ios-msg {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 1rem;
}

/* ========================================
   Contact Section Premium
   ======================================== */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.3rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.05rem;
}
/* Select com visual igual aos inputs */
form select {
  width: 100%;
  padding: 16px 18px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #334155;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Hover / focus igual input */
form select:focus {
  border-color: #22c55e; /* verde SócioFácil */
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* Wrapper para seta custom */
.form-group {
  position: relative;
    margin-bottom: 16px;
}

/* Seta personalizada */
.form-group::after {
  content: "▾";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.9rem;
  pointer-events: none;
}

/* ========================================
   Footer Premium
   ======================================== */
.footer {
    background: linear-gradient(180deg, #0a1f33 0%, var(--primary) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(46, 204, 113, 0.3) 50%, 
        transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer .logo-icon {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 4px;
}

.footer .logo-text {
    color: var(--white);
    font-size: 1.6rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: var(--transition);
    position: relative;
}

.footer-links-legal a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer .logo-text {
        font-size: 1.4rem;
    }
}

/* ========================================
   Toast Premium
   ======================================== */
.toast {
    position: fixed;
    bottom: 30px;
	center: 30px; 
    background: #0F2A44;
    color: #fff;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.toast.success {
    background: #2ECC71;
}

.toast.error {
    background: #e74c3c;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    padding: 5rem 0;
}

.bg-light {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--accent), #27ae60);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-item h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   Trust Badges e CTA Features
   ======================================== */
.trust-badges,
.cta-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badges span,
.cta-features span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(46, 204, 113, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.cta .cta-features span {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Responsive - Benefits & FAQ
   ======================================== */
@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-mockup {
        order: -1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .cta-box h2 {
        font-size: 2.2rem;
    }

    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .app-screen {
        max-width: 280px;
    }

    .app-screenshot {
        min-height: 520px;
    }
}

/* ========================================
   Limpar wrappers WordPress
   ======================================== */
.site-main,
.page-content,
.entry-content,
.page-header,
.site-content,
.content-area {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.entry-content > * {
    margin-top: 0 !important;
}

/* ========================================
   Micro-interações Premium
   ======================================== */
@media (hover: hover) {
    .feature-card,
    .btn-primary,
    .btn-store,
    .logo {
        will-change: transform;
    }
}

/* Performance */
.app-screen,
.feature-card i {
    will-change: transform;
}

/* Scroll reveal - adicione classe via JS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   PATCH PREMIUM – Ajustes finos sem quebrar layout
   ===================================================== */

/* 1️⃣ Corrige largura e “encaixe” das seções */
.section-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid,
.faq-list {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Dá aparência de card sem mudar HTML */
.benefit-item,
.faq-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 26px 28px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

/* Espaçamento vertical consistente */
.benefits-grid {
    gap: 2rem;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

/* 2️⃣ CTA – corrige texto apagado e vira “badge de confiança” */
.cta-features {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.cta-features span {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    backdrop-filter: blur(6px);
    opacity: 1; /* força visibilidade */
}

/* ========================================
   Footer – Versão Final Elegante (SaaS)
   ======================================== */

.footer {
  background: linear-gradient(180deg, #0b2740 0%, #081f33 100%);
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Marca */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand .logo-text span {
  color: #2ecc71;
}

.footer-description {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
}

/* Links */
.footer-links,
.footer-links-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links-legal a {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-links-legal a:hover {
  color: #2ecc71;
  transform: translateX(4px);
}

.footer-links a:visited,
.footer-links-legal a:visited,
.footer-links a:active,
.footer-links-legal a:active {
  color: #cbd5e1;
}

/* Separador inferior */
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ========================================
   Responsivo
   ======================================== */

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-description {
    margin: 0 auto;
  }

  .footer-links,
  .footer-links-legal {
    align-items: center;
  }

  .footer-links a:hover,
  .footer-links-legal a:hover {
    transform: none;
  }
}


/* ========================================
   Carousel dentro do mockup do app
   ======================================== */
.app-carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.app-carousel .carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s ease;
}

.app-carousel img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 28px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots button.active {
  width: 18px;
  border-radius: 999px;
  background: #2ecc71;
}

/* ========================================
   Scroll to Top – SócioFácil (FINAL)
   ======================================== */

#scrollTop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(46, 204, 113, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

/* seta em CSS (não depende de ícone) */
#scrollTop::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translate(-50%, -40%) rotate(45deg);
}

#scrollTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: pulse 2.5s infinite;
}

/* hover só no desktop */
@media (hover: hover) {
  #scrollTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(46, 204, 113, 0.6);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,.4); }
  70% { box-shadow: 0 0 0 12px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
/* mobile */
@media (max-width: 768px) {
  #scrollTop {
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
  }
}
