/* ============================================
   AGÊNCIA WK - LANDING PAGE
   CSS Principal
   ============================================ */

/* Reset e Variáveis */
:root {
    /* Cores Principal */
    --yellow-primary: #ffd100;
    --yellow-hover: #ffdc33;
    --yellow-dark: #cc9f00;
    
    /* Cores de Fundo */
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-dark-blue: #1f2a38;
    --bg-card: #141414;
    
    /* Cores de Texto */
    --text-white: #ffffff;
    --text-gray-light: #717173;
    --text-gray-medium: #a0a0a2;
    --text-gray-dark: #4a4a4c;
    
    /* Tipografia */
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-yellow: 0 4px 20px rgba(255, 209, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-logo {
    margin-bottom: var(--spacing-md);
}

.logo-img {
    max-width: 200px;
    height: auto;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--text-white) 0%, var(--text-gray-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
}

.hero-cta {
    margin-bottom: var(--spacing-md);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--yellow-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-badge i {
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1.2rem 2.5rem;
    background: var(--yellow-primary);
    color: var(--bg-dark);
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-yellow);
    border: 2px solid var(--yellow-primary);
}

.cta-button:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 209, 0, 0.5);
}

.cta-primary {
    background: var(--yellow-primary);
    color: var(--bg-dark);
}

.cta-secondary {
    background: transparent;
    color: var(--yellow-primary);
    border: 2px solid var(--yellow-primary);
    box-shadow: none;
}

.cta-secondary:hover {
    background: var(--yellow-primary);
    color: var(--bg-dark);
}

.cta-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

.cta-form {
    width: 100%;
    justify-content: center;
    padding: 1.3rem 2rem;
}

.cta-footer {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

.cta-note {
    text-align: center;
    color: var(--text-gray-light);
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

/* Section Titles */
.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray-light);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin-bottom: var(--spacing-md);
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark-blue);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

.about-text h2 {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-highlights {
    margin: var(--spacing-lg) 0;
}

.highlight-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--yellow-primary);
    flex-shrink: 0;
}

.highlight-item h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.highlight-item p {
    color: var(--text-gray-light);
    line-height: 1.6;
}

.cta-secondary {
    margin-top: var(--spacing-md);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.benefit-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--bg-dark);
}

.benefit-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.benefit-card p {
    color: var(--text-gray-light);
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Credibility Section */
.credibility-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark-blue);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.result-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--bg-dark);
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-5px);
}

.result-number {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 800;
    color: var(--yellow-primary);
    margin-bottom: var(--spacing-sm);
}

.result-label {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
}

.result-description {
    font-size: 0.9rem;
    color: var(--text-gray-light);
}

.subsection-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
}

.expertise-grid,
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.expertise-card,
.guarantee-item {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--bg-dark);
    transition: all 0.3s ease;
}

.expertise-card:hover,
.guarantee-item:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-5px);
}

.expertise-card i,
.guarantee-item i {
    font-size: 3rem;
    color: var(--yellow-primary);
    margin-bottom: var(--spacing-sm);
}

.expertise-card h4,
.guarantee-item h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-white);
}

.expertise-card p,
.guarantee-item p {
    font-size: 0.95rem;
    color: var(--text-gray-light);
}

/* Methodology Timeline */
.methodology-section {
    margin-bottom: var(--spacing-xl);
}

.methodology-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-yellow);
}

.timeline-content h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-white);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-gray-light);
    line-height: 1.6;
}

.credibility-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Offer Section */
.offer-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.offer-text h2 {
    text-align: left;
}

.offer-benefits {
    margin: var(--spacing-lg) 0;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray-light);
}

.offer-item i {
    color: var(--yellow-primary);
    font-size: 1.2rem;
}

.urgency-badge {
    background: rgba(255, 209, 0, 0.1);
    border: 2px solid var(--yellow-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--yellow-primary);
    font-weight: 600;
    margin-top: var(--spacing-md);
}

.urgency-badge i {
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid var(--bg-dark);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--bg-dark);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-primary);
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray-medium);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray-light);
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.form-privacy i {
    color: var(--yellow-primary);
}

.form-message {
    padding: 1rem;
    margin-bottom: var(--spacing-md);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

.form-message i {
    font-size: 1.2rem;
}

.form-message-success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.form-message-error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

.form-message-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Numbers Section */
.numbers-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark-blue);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.number-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--bg-dark);
    transition: all 0.3s ease;
}

.number-card:hover {
    border-color: var(--yellow-primary);
    transform: translateY(-5px);
}

.number-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.number-icon i {
    font-size: 2.5rem;
    color: var(--bg-dark);
}

.number-value {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--yellow-primary);
    margin-bottom: var(--spacing-sm);
}

.number-label {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
}

.number-description {
    font-size: 0.9rem;
    color: var(--text-gray-light);
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-sm);
    border: 2px solid var(--bg-dark);
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 209, 0, 0.05);
}

.faq-question i {
    color: var(--yellow-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    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 var(--spacing-md) var(--spacing-md);
    color: var(--text-gray-light);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-gray-light);
}

/* Footer */
.footer-section {
    background: var(--bg-darker);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--bg-dark);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: var(--spacing-sm);
}

.footer-slogan {
    color: var(--text-gray-light);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links ul li a {
    color: var(--text-gray-light);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--yellow-primary);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-gray-light);
}

.footer-contact ul li i {
    color: var(--yellow-primary);
    width: 20px;
}

.footer-contact ul li a {
    color: var(--text-gray-light);
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--yellow-primary);
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--yellow-primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-radius: 20px;
    margin-bottom: var(--spacing-lg);
}

.footer-cta h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.footer-cta p {
    color: var(--text-gray-light);
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--bg-dark);
}

.footer-bottom p {
    color: var(--text-gray-medium);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.footer-made {
    font-style: italic;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--yellow-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--yellow-hover);
}

