/*
Theme Name: Site Lam
Theme URI: https://lam.com
Author: João Silva
Author URI: https://lam.com
Description: Tema customizado moderno
Version: 1.0
*/

:root {
    --color-primary: #d4943a;
    --color-primary-hover: #b87d2e;
    --color-primary-dark: #bd5c24;
    --color-primary-light: #E49937;
    --color-bg: #Eff0ed;
    --color-bg-footer: #1a1a1a;
    --color-dark: #333;
    --color-text-mid: #444;
    --color-text-medium: #555;
    --color-text-light: #666;
    --color-text-lighter: #888;
    --color-border: #e8e4de;
    --color-border-light: #eee;
    --color-white: #fff;
    --color-white-005: rgba(255,255,255,0.05);
    --color-white-01: rgba(255,255,255,0.1);
    --color-white-03: rgba(255,255,255,0.3);
    --color-white-04: rgba(255,255,255,0.4);
    --color-white-07: rgba(255,255,255,0.7);
    --color-white-08: rgba(255,255,255,0.8);
    --color-white-085: rgba(255,255,255,0.85);
    --color-white-09: rgba(255,255,255,0.9);
    --color-black-006: rgba(0,0,0,0.06);
    --color-black-008: rgba(0,0,0,0.08);
    --color-black-01: rgba(0,0,0,0.1);
    --color-black-02: rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-dark);
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0 !important;
}

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

.container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.header {
    background: var(--color-bg);
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
    box-sizing: border-box;
}

main {
    padding-top: 82px;
}

.header.scrolled {
    box-shadow: 0 2px 20px var(--color-black-008);
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -1px;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: var(--color-primary);
}

.btn-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.hero {
    background: var(--color-bg);
    text-align: center;
    padding: 6rem 4rem 6rem;
    position: relative;
    overflow: hidden;
}

.owl-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    pointer-events: none;
    overflow: hidden;
}

.owl-bg .eye {
    position: fixed;
    width: 410px;
    height: 410px;
    border: 60px solid #e3d2c4;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.owl-bg .eye.left {
    right: 50%;
    margin-left: -515px;
}

.owl-bg .eye.right {
    left: 50%;
    margin-left: -5px;
}

.owl-bg .pupil {
    position: fixed;
    width: 140px;
    height: 140px;
    background: #d3ccc3;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-bg .closed-eye {
    position: fixed;
    width: 200px;
    height: 40px;
    background: #d3ccc3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-bg .beak {
    position: fixed;
    width: 80px;
    height: 135px;
    background: #f1a792;
    left: 50%;
    top: 71%;
    transform: translateX(-50%);
    clip-path: url(#raindrop);
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: var(--color-primary);
}

.hero p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--color-primary);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.wave-divider {
    position: relative;
    background: var(--color-primary);
}

.wave-divider::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-bg);
    border-radius: 0 0 50% 50%;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 4rem 1.5rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--color-bg);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.stat-card .label {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
}

.about {
    padding: 2rem 4rem 4rem;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
    border-radius: 2px;
}

.about h2 {
    text-align: center;
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.about .subtitle {
    text-align: center;
    color: var(--color-white-085);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    padding-top: 0.8rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-bg);
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 32px var(--color-black-008);
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
    border-radius: 4px 0 0 4px;
}

.about-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    opacity: 0.06;
    border-radius: 0 16px 0 0;
    pointer-events: none;
}

.about-content p {
    color: var(--color-text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-black-006);
    position: relative;
    z-index: 1;
}

.about-content p:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.about-content p::first-line {
    font-weight: 700;
    color: var(--color-dark);
}

.about-content p:first-of-type::first-letter {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-primary);
    float: left;
    line-height: 1;
    margin-right: 0.4rem;
    margin-top: 0.15rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.about-content strong {
    color: var(--color-dark);
    position: relative;
    display: inline-block;
}

.about-content strong::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    opacity: 0.35;
    border-radius: 1px;
}

.services {
    padding: 2rem 4rem 4rem;
}

.services h2 {
    text-align: center;
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.services .subtitle {
    text-align: center;
    color: var(--color-white-085);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-primary-hover);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px var(--color-black-02);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.service-card h3 {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--color-white-09);
    font-size: 0.85rem;
    line-height: 1.6;
}

.cases {
    padding: 4rem 4rem;
    background: var(--color-bg);
}

.cases h2 {
    text-align: center;
    color: var(--color-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cases .subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.case-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-black-008);
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-image {
    height: 150px;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--color-white-04);
}

.case-content {
    padding: 1.5rem;
}

.case-content h3 {
    color: var(--color-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.case-content > p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-list {
    list-style: none;
}

.case-list li {
    font-size: 0.85rem;
    color: var(--color-text-medium);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-list li i {
    color: var(--color-primary);
    font-size: 0.75rem;
}

.team {
    padding: 4rem 4rem;
    background: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.team-image-wrapper {
    position: relative;
    grid-row: 1;
    grid-column: 1;
}

.team-image {
    background: var(--color-bg);
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-image i {
    font-size: 8rem;
    color: var(--color-primary);
    opacity: 0;
}

.team-name {
    background: url('../img/corujinhavazada.png') center / cover no-repeat;
    color: var(--color-white);
    padding: 1.6rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    position: absolute;
    bottom: -60px;
    right: -10px;
    width: 100px;
    height: 200px;
    z-index: 2;
    white-space: nowrap;
}

.fa-award:before{
    opacity: 0;
}

.team-content h2 {
    color: var(--color-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.team-content h2 span {
    color: var(--color-primary);
}

.team-content p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.team-content strong {
    color: var(--color-dark);
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.team-stat {
    background: var(--color-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-stat .icon {
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.team-stat .number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.team-stat .label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: block;
    margin-top: 0.2rem;
}

.products {
    padding: 4rem 4rem;
    background: var(--color-bg);
}

.products h2 {
    text-align: center;
    color: var(--color-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.products .subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1500px;
    margin: 0 auto;
}

.product-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--color-black-006);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-header i {
    font-size: 1.4rem;
    color: var(--color-white);
}

.product-header h3 {
    color: var(--color-white);
    font-size: 1.05rem;
}

.product-body {
    padding: 1rem 1.2rem 1.2rem;
}

.product-body .product-type {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.product-body p {
    color: var(--color-text-light);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.product-body .ideal {
    font-style: italic;
    color: var(--color-text-lighter);
    font-size: 0.8rem;
    border-top: 1px solid var(--color-border-light);
    padding-top: 0.6rem;
    margin-bottom: 0;
}

.insights {
    padding: 4rem 4rem;
    background: var(--color-white);
}

.insights h2 {
    text-align: center;
    color: var(--color-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.insights .subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    background: var(--color-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-card a {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.insights-more {
    text-align: center;
    margin-top: 2.5rem;
}

.insight-image {
    height: 160px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-white-03);
}

.insight-body {
    padding: 1.2rem;
}

.insight-body .tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.insight-body h3 {
    color: var(--color-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.insight-body p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.insight-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--color-black-006);
    color: var(--color-text-lighter);
    font-size: 0.75rem;
}

.club {
    padding: 5rem 4rem;
    background: var(--color-bg);
    text-align: center;
}

.club-inner {
    max-width: 900px;
    margin: 0 auto;
}

.club-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.club h2 {
    color: var(--color-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.club .subtitle {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.club-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.club-highlight {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.club-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--color-black-008);
}

.ch-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: var(--color-white);
}

.club-highlight h4 {
    color: var(--color-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.club-highlight p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.club .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

.contact {
    padding: 4rem 4rem;
    background: var(--color-dark);
    color: var(--color-white);
}

.contact h2 {
    text-align: center;
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact .subtitle {
    text-align: center;
    color: var(--color-white-07);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: var(--color-white-005);
    border: 1px solid var(--color-white-01);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: border-color 0.3s, background 0.3s;
}

.contact-info-card:hover {
    background: var(--color-white-01);
    border-color: var(--color-white-03);
}

.cic-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.contact-info-card h4 {
    color: var(--color-primary);
    font-size: 0.95rem;
    margin: 0 0 0.3rem;
    line-height: 1.4;
}

.contact-info-card p {
    color: var(--color-white-07);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-info-card a:hover {
    color: var(--color-primary-light);
}

.contact-form-section {
    background: var(--color-white-005);
    border: 1px solid var(--color-white-01);
    border-radius: 15px;
    padding: 2rem;
}

.contact-form-section h3 {
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-section .form-group {
    margin-bottom: 1rem;
}

.contact-form-section label {
    display: block;
    color: var(--color-white-08);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--color-white-01);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--color-white-005);
    color: var(--color-white);
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder {
    color: var(--color-white-03);
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form-section textarea {
    resize: vertical;
    min-height: 100px;
}

.thank-you {
    text-align: center;
    padding: 2rem 1rem;
}

.thank-you-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thank-you h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.thank-you p {
    color: var(--color-primary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.club-form-card .thank-you {
    padding: 1rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.footer {
    background: var(--color-bg-footer);
    padding: 4rem 4rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand img {
    max-height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-white-04);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: var(--color-white-04);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-white-01);
    color: var(--color-white-07);
    font-size: 1rem;
    padding: 0;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--color-white-01);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-white-04);
    font-size: 0.8rem;
    margin: 0;
}

.error-404 {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.error-404-content {
    text-align: center;
    max-width: 500px;
}

.error-404-code {
    display: block;
    font-size: 7rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-404-content h1 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.error-404-desc {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-404-search {
    display: flex;
    max-width: 400px;
    margin: 0 auto 2rem;
    gap: 0;
}

.error-404-search input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 25px 0 0 25px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.error-404-search input:focus {
    border-color: var(--color-primary);
}

.error-404-search button {
    width: 50px;
    border: 2px solid var(--color-primary);
    border-left: none;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.error-404-search button:hover {
    background: var(--color-primary-hover);
}

.club-page {
    padding: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.club-page-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.club-page-intro h1 {
    color: var(--color-dark);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.club-page-intro .subtitle {
    color: var(--color-text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.club-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.club-page-text p {
    color: var(--color-text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.club-page-text strong {
    color: var(--color-dark);
}

.club-page-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
}

.cpf-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-text-medium);
    font-size: 0.95rem;
}

.cpf-item i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.club-page-tagline {
    font-size: 1.05rem;
    color: var(--color-dark);
    margin: 1.5rem 0;
}

.club-form-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--color-black-006);
}

.club-form-card h3 {
    color: var(--color-dark);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    align-items: center;
    gap: 0.5rem;
}

.club-form-card .form-group {
    margin-bottom: 1rem;
}

.club-form-card label {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.club-form-card input,
.club-form-card textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.club-form-card input:focus,
.club-form-card textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.club-form-card textarea {
    resize: vertical;
    min-height: 90px;
}

.archive-page {
    padding: 4rem 4rem;
    background: var(--color-white);
    min-height: 60vh;
}

.archive-page h2 {
    text-align: center;
    color: var(--color-dark);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.archive-page .subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar {
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.search-bar form {
    display: flex;
    gap: 0.5rem;
}

.search-bar input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--color-bg);
    transition: border-color 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.search-bar button {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover {
    background: var(--color-primary-hover);
}

.no-results {
    text-align: center;
    color: var(--color-text-lighter);
    font-size: 1.1rem;
    padding: 3rem 0;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--color-bg);
    color: var(--color-text-medium);
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.pagination .current {
    background: var(--color-primary);
    color: var(--color-white);
}

.post-header {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.post-header .tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-header h1 {
    color: var(--color-dark);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--color-text-lighter);
    font-size: 0.85rem;
}

.post-meta i {
    margin-right: 0.4rem;
}

.post-thumbnail {
    max-width: 720px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-text-mid);
    font-size: 1.05rem;
    line-height: 1.9;
}

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

.post-content h2 {
    color: var(--color-dark);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.post-content h3 {
    color: var(--color-dark);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 4px solid var(--color-primary);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: var(--color-bg);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--color-text-medium);
}

.post-content ul,
.post-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.post-tags .tag {
    display: inline-block;
    background: var(--color-bg);
    color: var(--color-text-medium);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background 0.3s;
    text-decoration: none;
}

.post-tags .tag:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}

.post-navigation a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-decoration: none;
}

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

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s;
    z-index: 9999;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

section, .stats, .about, .services, .cases, .team, .products, .insights, .club, .contact {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    z-index: 10000;
    transition: width 0.1s linear;
}

@media (max-width: 1600px) {
    .products-grid { max-width: 1100px; grid-template-columns: repeat(3, 1fr); gap: 0.875rem; }
}

*, *::before, *::after {
    max-width: 100vw;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .header, .hero, .wave-divider, .about, .services, .cases, .team, .products, .insights, .club, .contact, .footer {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .club-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .club-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .club-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 868px) {
    .menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px var(--color-black-01);
        z-index: 1000;
        overflow-x: hidden;
    }

    .header-nav.active {
        right: 0;
    }

    .header, .hero, .about, .services, .cases, .team, .products, .insights, .club, .contact, .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services-grid, .cases-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 250px;
    }

    .stats {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .club-highlights {
        grid-template-columns: 1fr;
    }

    .club-page-grid {
        grid-template-columns: 1fr;
    }

    .club-page {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 0.8rem 1.5rem;
    }

    .hero {
        padding: 3rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem 1rem;
    }

    .stat-card {
        width: 100%;
        max-width: 250px;
    }

    .about, .services, .cases, .team, .products, .insights, .club, .contact, .footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .about-content {
        padding: 1.5rem 1.5rem 1rem;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-bottom: 0.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .single-post {
        padding: 3rem 0;
    }

    .post-header {
        padding: 0 3rem;
    }

    .post-thumbnail {
        margin-left: 3rem;
        margin-right: 3rem;
    }

    .post-content {
        padding: 0 3rem;
    }

    .post-footer {
        padding: 0 3rem;
    }

    .post-navigation {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .single-post {
        padding: 2rem 0;
    }

    .post-header {
        padding: 0 1.5rem;
    }

    .post-thumbnail {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .post-content {
        padding: 0 1.5rem;
    }

    .post-footer {
        padding: 0 1.5rem;
    }

    .post-navigation {
        padding: 0 1.5rem;
    }

    .post-content {
        max-width: 100%;
    }

    .post-header h1 {
        font-size: 1.6rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .archive-page {
        padding: 3rem 1.5rem;
    }

    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    .owl-bg {
        display: none;
    }
}
