/* 
 * Henrique Israel Theme - Main Stylesheet
 * Design focado em conversão para prestadores de serviço
 */

/* ==========================================
   RESET E BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores */
    --color-military: #2F4538;
    --color-military-light: #3d5a47;
    --color-military-dark: #1f2e25;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #2F4538 0%, #3d5a47 100%);
    --gradient-hero: linear-gradient(135deg, rgba(47, 69, 56, 0.95) 0%, rgba(31, 46, 37, 0.9) 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-military: 0 10px 30px -10px rgba(47, 69, 56, 0.3);
    
    /* Tipografia */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Transições */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   HEADER / NAVEGAÇÃO
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

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

.site-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-box {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #949494;
}

.logo-tagline {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: var(--color-gray-700);
    font-weight: 500;
    transition: var(--transition-base);
}

.main-nav a:hover {
    color: var(--color-military);
}

.desktop-nav,
.desktop-cta {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-military);
    transition: var(--transition-base);
}

.mobile-menu {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-gray-200);
    margin-top: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 1.5rem;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--color-gray-700);
    font-weight: 500;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-military);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(47, 69, 56, 0.4);
}

.btn-hero {
    background: #ffffff;
    color: #2f4538;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-beneficios {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
}

.btn-hero:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.benefits-cta .btn-hero {
    background: #ffffff;
    color: #2f4538;
    border: 2px solid #2f4538;
}


.btn-secondary {
    background: var(--color-gray-100);
    color: var(--color-military);
}

.btn-secondary:hover {
    background: var(--color-gray-200);
}

.btn-icon {
    width: 20px;
    height: 20px;
}


@media (max-width: 768px) {
  .mobile-cta {
    font-size: 20px;       /* aumenta o texto */
    padding: 1px 2px;    /* aumenta a área clicável */
    width: 100%;           /* ocupa toda a largura */
    text-align: center;    /* centraliza o texto */
    border-radius: 10px;   /* deixa mais arredondado (opcional) */
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: url('https://henriqueisrael.com.br/wp-content/themes/wordpress-theme/assets/images/03.jpg') center/cover no-repeat;
    z-index: 0;
}




.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    padding: 2rem 1.5rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   SECTIONS
   ========================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f4538;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.about-section,
.faq-section {
    background: #ffffff;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-intro {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

#beneficios .section-title {
    color: #ffffff;
}

.about-intro strong {
    color: var(--color-military);
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-signature {
    display: inline-block;
}

.signature-box {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-military);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.signature-role {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-top: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-military);
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.profile-image:hover {
    filter: grayscale(0%);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--color-military);
}


.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    color: var(--color-military);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-military);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefits-section {
	background-color: #141414;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition-base);
}

.benefit-positive {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
}

.benefit-negative {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
}

.benefit-positive .benefit-icon {
    color: #22c55e;
}

.benefit-negative .benefit-icon {
    color: #ef4444;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.benefits-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonial-card {
    display: none;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.testimonial-card.active {
    display: block;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-gray-700);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-military);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 1rem;
    color: var(--color-gray-600);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-300);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--color-military);
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-military);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-military);
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: var(--color-gray-50);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-gray-700);
    line-height: 1.7;
}

/* ==========================================
   CONTACT SECTION COMPLETA
   ========================================== */
.contact-section {
    padding: 6rem 0;
    background: #141414;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-military) 50%, transparent 100%);
}

#contato .section-title,
#contato .section-subtitle {
    color: #fff;
    text-align: center;
}

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

.contact-card {
    flex: 1;
    max-width: 400px;
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-100);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-military);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* BOTÕES */
.contact-card .btn {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    padding: 1rem;
    transition: var(--transition-base);
}

.contact-card .btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
}

.contact-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(47, 69, 56, 0.4);
}

.contact-card .btn-secondary {
    background: #2f4538;
    color: #ffffff;
    border: none;
}

.contact-card .btn-secondary:hover {
    background: var(--color-military);
    transform: translateY(-2px);
}

.contact-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin: 0 auto 4rem auto;
    max-width: 900px;
}

/* RESPONSIVIDADE */
@media (max-width: 700px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 90%;
    }
}


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-form {
        padding: 3rem;
    }
    
    .form-header {
        padding: 3rem;
    }
    
    .contact-card .btn {
        width: auto;
        min-width: 160px;
    }
    
    .contact-form-wrapper {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 600px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--color-military-dark);
    color: var(--color-white);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-copyright p {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.75rem;
}

/* ==========================================
   POSTS E PÁGINAS
   ========================================== */
.site-main {
    padding: 8rem 0 4rem;
    min-height: 60vh;
}

.posts-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

.post-content {
    padding: 2rem;
}

.entry-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-military);
    margin-bottom: 1rem;
}

.entry-title a {
    color: var(--color-military);
    transition: var(--transition-base);
}

.entry-title a:hover {
    color: var(--color-military-light);
}

.entry-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.entry-summary {
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--color-military);
    font-weight: 600;
    transition: var(--transition-base);
}

.read-more:hover {
    color: var(--color-military-light);
}

.single-post,
.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content {
    color: var(--color-gray-700);
    line-height: 1.8;
    font-size: 1.125rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--color-military);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content img {
    border-radius: 12px;
    margin: 2rem 0;
}

.entry-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
}

.cat-links,
.tags-links {
    display: inline-block;
    margin-right: 1rem;
    color: var(--color-gray-600);
}

/* ==========================================
   ERROR 404
   ========================================== */
.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-404 .page-title {
    font-size: 3rem;
    color: var(--color-military);
    margin-bottom: 2rem;
}

.error-404 ul {
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
    list-style-position: inside;
}

.error-actions {
    margin: 3rem 0;
}

.search-form-wrapper {
    max-width: 500px;
    margin: 3rem auto;
}

/* ==========================================
   COMENTÁRIOS
   ========================================== */
.comments-area {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--color-gray-200);
}

.comments-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-military);
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    margin-bottom: 3rem;
}

.comment-list li {
    padding: 1.5rem;
    background: var(--color-gray-50);
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-text {
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}




/* ==========================================
   HEADER / NAVEGAÇÃO - REMOVER MENU MOBILE
   ========================================== */

/* No desktop vai mostra essa bomba (768px+), mostrar navegação desktop */
@media (min-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none; 
    }
    
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mobile-menu-toggle,
    .mobile-menu {
        display: none !important; 
    }
    
    .header-content {
        justify-content: center; 
    }
    
    .site-logo {

    }
}
