/*
Theme Name: Takeda Theme
Theme URI: https://www.carlostakeda.psc.br/
Author: Antigravity Assistant
Description: Custom theme recreating carlostakeda.psc.br with specialized landing pages.
Version: 1.1 - Premium Authority
Text Domain: takeda-theme
*/

:root {
    /* Colors - Premium/Authority Palette */
    --primary-color: #0066cc;
    /* Deep Royal Blue */
    --primary-dark: #004c99;
    --accent-red: #d90429;
    /* Urgent Red for Sales */
    --accent-dark-red: #a1001d;
    --text-color: #334155;
    /* Slate 700 - Softer than pure black */
    --heading-color: #0f172a;
    /* Slate 900 - Deep, authoritative */
    --bg-light: #f8fafc;
    /* Cool grey/white */
    --bg-white: #ffffff;
    --success-green: #10b981;
    /* Modern Emerald */
    --gold-accent: #b45309;
    /* Subtle gold/bronze for authority */

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Spacing & UI */
    --container-width: 1140px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & Basics */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    /* Increased for readability */
    color: var(--text-color);
    margin: 0;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Global Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
}

.font-serif {
    font-family: var(--font-accent);
}

.text-blue {
    color: var(--primary-color);
}

.text-red {
    color: var(--accent-red);
}

/* Buttons (CRO Optimized) */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    /* Pill shape */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.btn-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.btn-green:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

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

/* Layout Containers */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    /* More breathing room */
}

/* Navigation */
.site-header {
    background: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.site-logo {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--heading-color);
    letter-spacing: 1px;
}

.site-logo span {
    font-weight: 700;
    color: var(--primary-color);
}

.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* Footer */
.site-footer {
    background: #1e293b;
    /* Slate 800 */
    color: #cbd5e1;
    /* Slate 300 */
    padding: 60px 0;
    text-align: center;
}

.site-footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Specific Page Styles --- */

/* Flexible Grid */
.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    /* Increased gap */
    align-items: center;
}

.col-1-2 {
    flex: 1 1 450px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 100%);
    overflow: hidden;
    /* Prevent horizontal scroll from large images */
}

.hero-image {
    text-align: center;
    /* Center the image in its column */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    /* Ensure image is below text */
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 120%;
    /* Reduced from 140% to prevent crowding */
    width: auto;
    margin-left: -10%;
    /* Adjusted from -20% */
    margin-top: -20px;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    /* Subtle zoom on hover */
}

.hero-content {
    position: relative;
    z-index: 10;
    /* Ensure text is above image */
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    /* Responsive font size */
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--heading-color);
}

.hero-content .subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 204, 0.08);
    border-radius: 4px;
    line-height: 1.4;
    max-width: 90%;
}

.hero-credentials {
    border-left: 4px solid var(--primary-color);
    padding: 10px 0 10px 24px;
    margin: 40px 0;
}

.hero-credentials p {
    margin-bottom: 12px;
}

.hero-credentials .main-cred {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--heading-color);
}

.hero-credentials .social-proof {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.quote-box {
    border-left: 4px solid var(--primary-color);
    padding: 20px 0 20px 24px;
    margin-top: 40px;
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-color);
    background: var(--bg-white);
    box-shadow: var(--box-shadow);
    border-radius: 0 8px 8px 0;
}

.quote-box p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.quote-box cite {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* About / Process Section */
.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 16px auto 0;
    border-radius: 2px;
}

.card-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

/* FAQ */
.faq-list {
    display: grid;
    gap: 20px;
}

.faq-list-vertical {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.faq-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.faq-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.faq-item {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--box-shadow);
}

.faq-question {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-color);
}


/* Infoproduto Specifics - High Conversion */
.takeda-sales-page {
    background: var(--bg-white);
}

.sales-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sales-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.sales-hero .container {
    position: relative;
    z-index: 2;
}

.sales-hero h1 {
    color: var(--bg-white);
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-red {
    color: var(--accent-red);
    position: relative;
    display: inline-block;
}

.highlight-red::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(217, 4, 41, 0.3);
    z-index: -1;
    transform: skewX(-10deg);
}

.sales-content {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.sales-content ul li {
    background: var(--bg-light);
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--success-green);
}

/* Sales Page Refined Components */
.hero-tag {
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-tag p {
    color: #fff;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-top: 24px;
    color: #e2e8f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-wrapper {
    margin-top: 30px;
}

.btn-hero-lg {
    font-size: 1.3rem;
    padding: 20px 50px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.hero-guarantee {
    font-size: 0.85rem;
    margin-top: 15px;
    color: #94a3b8;
}

.sales-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.sales-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #64748b;
}

.target-audience-box {
    background: #FEF2F2;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #FECACA;
    margin: 40px 0;
    text-align: center;
}

.target-audience-box h3 {
    color: #991B1B;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.target-audience-box p {
    font-size: 1.1rem;
    color: #7F1D1D;
    margin-bottom: 0;
}

.final-cta-box {
    text-align: center;
    background: #f8fafc;
    padding: 60px 20px;
    border-radius: 15px;
    margin-top: 60px;
    border: 1px solid #e2e8f0;
}

.price-strike {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-decoration: line-through;
    color: #94a3b8;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--success-green);
    line-height: 1;
    margin: 0;
}

.price-sub {
    color: #64748b;
    margin: 0;
}

.trust-icons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.8;
    font-size: 0.9rem;
    color: #475569;
}

/* Blog Page Styles */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.blog-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.post-thumbnail {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.post-thumbnail img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.entry-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.entry-title a {
    color: var(--heading-color);
    text-decoration: none;
}

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

.entry-excerpt {
    margin: 15px 0;
    flex-grow: 1;
    color: var(--text-color);
    font-size: 1rem;
}

.read-more {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Utility: Circular Image */
.img-circle {
    border-radius: 50% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: var(--box-shadow);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 50px 0;
    }

    .flex-row {
        gap: 30px;
    }

    .col-1-2 {
        flex: 1 1 100%;
    }

    .hero-image img {
        max-width: 100%;
        /* Reset to 100% on mobile to fit screen */
        margin-left: 0;
        /* Removing negative margin on mobile */
    }

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Sales Page Mobile */
    .sales-hero {
        padding: 80px 0;
    }

    .sales-hero h1 {
        font-size: 2.5rem;
    }

    .sales-title {
        font-size: 1.8rem;
    }

    .price-main {
        font-size: 2.8rem;
    }

    .trust-icons {
        flex-direction: column;
        gap: 10px;
    }

    .blog-grid {
        gap: 30px;
    }

    .card-box,
    .target-audience-box,
    .final-cta-box {
        padding: 30px 20px;
    }
}