/*
Theme Name: Concretiza
Description: Tema WordPress profissional para fintech Concretiza. Design moderno em tons dourados com animações suaves e total responsividade.
Author: Equipe Concretiza
Version: 1.0.0
License: GPL v2 or later
Text Domain: concretiza
Tags: business, finance, responsive, modern, corporate
*/

/* Reset CSS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variáveis CSS - Exatas do React */
:root {
    --primary: #BFA14A;
    --primary-dark: #9A8239;
    --primary-light: #D4C366;
    --accent: #F5E6A3;
    --dark: #1A1A1A;
    --gray: #6B7280;
    --light: #F8F9FA;
    --white: #ffffff;
    --black: #000000;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography - Following Reference Site Specifications */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Hero Title (H1) - 72px, line-height 1.0 */
h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    line-height: 1.0;
    font-weight: 700;
    letter-spacing: normal;
}

/* Section Headers (H2) - 48px, line-height 1.0 */
h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    line-height: 1.0;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Subheaders (H3) - 18px, line-height 1.55 */
h3 { 
    font-size: 1.125rem; 
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Service/Feature Titles (H4) */
h4 {
    font-size: 1.125rem;
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Body Text - 14px, line-height 1.43 */
p {
    font-size: 0.875rem;
    line-height: 1.43;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Button Styles - Reference Site Typography */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px) scale(1.02);
    color: var(--black);
    box-shadow: 0 8px 25px -8px rgba(191, 161, 74, 0.4);
}

.btn-ghost {
    background-color: transparent;
    color: #9CA3AF;
    border: 1px solid #6B7280;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: #9CA3AF;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    height: 4rem;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    height: 2.5rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.main-navigation a {
    color: #D1D5DB;
    text-decoration: none;
    padding: 0.75rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 2.5rem;
}

.main-navigation a:hover {
    color: var(--white);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 80%;
}

/* Hero Section - World-Class Typography & Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1F2937 50%, #000000 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-bg 4s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(225deg, rgba(255, 193, 7, 0.05), rgba(255, 152, 0, 0.05));
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-bg 4s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 85vh;
}

/* Hero Typography - 75% Compact Elegant Scale */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
}

/* Typography Hierarchy - 75% Scale for Maximum Elegance */
.hero-subtitle-container {
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: 0.65625rem;
    text-transform: uppercase;
    letter-spacing: 1.05px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.0725;
    text-align: left;
}

.hero-title-container {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.375rem);
    font-weight: 700;
    color: var(--white);
    line-height: 0.75;
    margin: 0;
    letter-spacing: normal;
    text-align: left;
}

.hero-description-container {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-description {
    font-size: 0.84375rem;
    color: #E5E7EB;
    line-height: 1.1625;
    margin: 0;
    max-width: 90%;
    font-weight: 400;
    text-align: left;
}

/* CTA Section - Form Removed */
.hero-cta-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    display: none; /* Form completely hidden */
}

/* Form Design - Hidden */
.hero-form {
    display: none;
}

.form-input-wrapper {
    display: none;
}

.hero-form input[type="email"] {
    display: none;
}

.hero-form .btn-primary {
    display: none;
}

/* Form Caption - Hidden */
.hero-form-caption {
    display: none;
}

.hero-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(191, 161, 74, 0.2);
}

.hero-visual {
    position: relative;
}

.hero-mockup {
    position: relative;
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.5), rgba(31, 41, 55, 0.5));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F9FAFB, #ffffff);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 280px;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(191, 161, 74, 0.15);
    border-color: rgba(191, 161, 74, 0.3);
}

.service-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(191, 161, 74, 0.1);
    border: 1px solid rgba(191, 161, 74, 0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    transition: all 0.3s ease;
}

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

/* Service Card Typography - Compact & Professional */
.service-card h3 {
    font-size: 0.9375rem;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: #1F2937;
}

.service-card p {
    font-size: 0.78125rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 0;
    color: #6B7280;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #111827, #000000);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, #F9FAFB);
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border: 1px solid #E5E7EB;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -8px rgba(191, 161, 74, 0.4);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #111827, #000000);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.05), rgba(255, 152, 0, 0.05));
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-bg 4s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(225deg, rgba(255, 193, 7, 0.03), rgba(255, 152, 0, 0.03));
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-bg 4s ease-in-out infinite 2s;
}

/* Insights Section */
.insights-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #F9FAFB, white);
}

.insight-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(191, 161, 74, 0.15);
    border-color: rgba(191, 161, 74, 0.3);
}

/* Partner Logos Section */
.partner-logos-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #F9FAFB);
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Footer */
.site-footer {
    background: linear-gradient(to bottom, #111827, #000000);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    color: white;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #22c55e;
    color: white;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25%); }
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.animate-slide-in-up { animation: slide-in-up 0.8s ease-out both; }

/* Responsive Design - Reference Site Typography */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero-subtitle,
    .hero-title,
    .hero-description,
    .hero-form-caption {
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .form-input-wrapper {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .about-section div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }
    
    .about-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .insights-section div[style*="justify-content: space-between"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2rem;
    }
    
    .insights-section div[style*="justify-content: space-between"] > div:first-child {
        text-align: left !important;
    }
    
    .insights-section a[style*="display: none"] {
        display: inline-flex !important;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .hero-section {
        padding: 3.75rem 0 2.25rem;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        min-height: 56.25vh;
        gap: 1.875rem;
    }
    
    .hero-subtitle-container {
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.609375rem;
        letter-spacing: 0.9px;
    }
    
    .hero-title-container {
        margin-bottom: 1.125rem;
    }
    
    .hero-title {
        font-size: clamp(1.6875rem, 6vw, 2.625rem);
        line-height: 0.75;
    }
    
    .hero-description-container {
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.796875rem;
        line-height: 1.1625;
        max-width: 100%;
    }
    
    .form-input-wrapper {
        display: none; /* Form removed */
    }
    
    .hero-form input[type="email"] {
        display: none; /* Form removed */
    }
    
    .hero-form .btn-primary {
        display: none; /* Form removed */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .service-card {
        max-width: 100%;
        padding: 1rem;
    }
    
    .service-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .service-card h3 {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
        line-height: 1.35;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    
    .insights-section {
        padding: 3rem 0;
    }
    
    .partner-logos-section {
        padding: 3rem 0;
    }
    
    .partner-logos-section div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-section { 
        padding: 3rem 0 1.5rem; 
    }
    
    .hero-content {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .hero-subtitle-container {
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.5625rem;
        letter-spacing: 0.75px;
    }
    
    .hero-title-container {
        margin-bottom: 1.125rem;
    }
    
    .hero-title {
        font-size: clamp(1.40625rem, 7.5vw, 2.0625rem);
        line-height: 0.75;
    }
    
    .hero-description-container {
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.75rem;
        line-height: 1.1625;
    }
    
    .hero-form-caption {
        display: none; /* Form removed */
    }
    
    .services-section { padding: 2.25rem 0; }
    .service-card { 
        padding: 0.875rem;
        max-width: 100%;
    }
    .service-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    .service-card h3 {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
    }
    .service-card p {
        font-size: 0.6875rem;
        line-height: 1.3;
    }
    .about-section { padding: 2.25rem 0; }
    .insights-section { padding: 2.25rem 0; }
    .partner-logos-section { padding: 2.25rem 0; }
}