/* Variáveis e Configurações Globais - Versão Alternativa Mais Clara */
:root {
    --primary: #c19434; /* Dourado mais vivo */
    --primary-light: #e0b652; /* Dourado claro */
    --primary-dark: #9c7921; /* Dourado mais escuro */
    --secondary: #c19434; /* Dourado mais vivo */
    --secondary-light: #e0b652; /* Dourado claro */
    --secondary-dark: #9c7921; /* Dourado mais escuro */
    --accent: #ffd700; /* Dourado brilhante */
    --light: #ffffff; /* Branco puro */
    --dark: #222831; /* Azul escuro quase preto */
    --darker: #1b2027; /* Azul escuro mais profundo */
    --text: #f0f0f0; /* Texto claro */
    --text-dark: #222831; /* Texto escuro */
    --text-muted: #b0b0b0; /* Texto secundário */
    --card-bg: #2d3a4f; /* Fundo de cards - azul escuro */
    --card-bg-light: #394a65; /* Fundo de cards mais claro */
    --background: #2a3548; /* Fundo da página - azul escuro médio */
    --background-light: #30405e; /* Fundo mais claro para seções alternadas */
    --gradient-gold: linear-gradient(135deg, #c19434 0%, #ffd700 100%);
    --gradient-dark: linear-gradient(135deg, #1b2027 0%, #364156 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 5px 15px rgba(193, 148, 52, 0.3);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background);
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--light);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text);
}

.text-gradient {
    background-image: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.accent-text {
    color: var(--accent);
    font-weight: 600;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:hover::before {
    width: 100%;
}

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

.btn-primary::after {
    background-image: var(--gradient-gold);
}

.btn-primary::before {
    background-image: linear-gradient(135deg, #ffd700 0%, #c19434 100%);
}

.btn-secondary {
    color: var(--text-dark);
}

.btn-secondary::after {
    background-image: var(--gradient-gold);
}

.btn-secondary::before {
    background-image: linear-gradient(135deg, #ffd700 0%, #c19434 100%);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
}

.btn-outline:hover {
    color: var(--text-dark);
    background: var(--primary-light);
}

/* Loading Animation - Visual e Simplificada */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.circle-animation {
    transform-origin: center;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.circle-red {
    animation-name: drawCircle;
    stroke-dashoffset: 126;
    animation-delay: 0s;
}

.circle-blue {
    animation-name: drawCircle;
    stroke-dashoffset: 126;
    transform: rotate(180deg);
    animation-delay: 0.3s;
}

.loader-text {
    color: var(--primary-light);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.5s ease-out 0.8s forwards;
}

.loader-subtitle {
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.5s ease-out 1.2s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background-color: rgba(27, 32, 39, 0.9);
}

header.scrolled {
    background-color: rgba(27, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 40px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-light);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

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

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

.main-nav a:hover::after {
    width: 100%;
}

.contact-btn {
    margin-left: 1rem;
}

/* Hero Section Redesigned */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    background: linear-gradient(rgba(27, 32, 39, 0.8), rgba(42, 54, 73, 0.8)), url('imagens/biblioteca.jpg') no-repeat center center/cover;
    overflow: hidden;
    color: var(--light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

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

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--light);
    position: relative;
    display: inline-block;
}

.hero-text h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-image: var(--gradient-gold);
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text);
    max-width: 90%;
}

.hero-highlight {
    display: inline-block;
    background: rgba(193, 148, 52, 0.2);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(193, 148, 52, 0.3);
}

.hero-highlight i {
    margin-right: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) rotate(1deg);
    transition: all 0.5s ease;
    border: 1px solid rgba(193, 148, 52, 0.3);
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) rotate(0deg);
    border-color: var(--primary-light);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    opacity: 0.9;
}

.hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 32, 39, 0.9), rgba(27, 32, 39, 0));
    padding: 2rem;
    color: var(--light);
}

.hero-card-content h3 {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

/* Shapes */
.shape {
    position: absolute;
    z-index: 0;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(193, 148, 52, 0.1) 0%, rgba(193, 148, 52, 0) 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(224, 182, 82, 0.1) 0%, rgba(224, 182, 82, 0) 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}

.shape-3 {
    bottom: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(193, 148, 52, 0.1) 0%, rgba(193, 148, 52, 0) 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite 1s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Float Button */
.float-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-image: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 999;
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(193, 148, 52, 0.4);
}

.float-btn i {
    font-size: 1.8rem;
}

/* About Section */
.about {
    position: relative;
    background-color: var(--background-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
    transition: all 0.5s ease;
    border: 1px solid rgba(193, 148, 52, 0.3);
}

.about-image-main:hover {
    transform: perspective(0) rotateY(0) rotateX(0);
    border-color: var(--primary-light);
}

.about-image-accent {
    position: absolute;
    width: 60%;
    height: 60%;
    top: -10%;
    left: -10%;
    border-radius: 1rem;
    background-image: var(--gradient-gold);
    opacity: 0.2;
    z-index: 1;
}

.about-text {
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-image: var(--gradient-gold);
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-highlight {
    background: rgba(193, 148, 52, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 2rem 0;
}

.about-highlight p {
    margin-bottom: 0;
}

/* Process Section */
.process {
    background-color: var(--background);
    position: relative;
    padding: 8rem 0;
}

.section-title.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-image: var(--gradient-gold);
}

.process-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-around;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-step {
    background-image: var(--gradient-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.process-content {
    width: 45%;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(193, 148, 52, 0.2);
}

.process-item:nth-child(odd) .process-content {
    margin-right: auto;
    margin-left: 0;
    transform: translateY(30px);
}

.process-item:nth-child(even) .process-content {
    margin-left: auto;
    margin-right: 0;
    transform: translateY(-30px);
}

.process-content h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-content p {
    margin-bottom: 0;
}

/* Features Section */
.features {
    background-color: var(--background-light);
    position: relative;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.features-header .section-title::before {
    left: 50%;
    transform: translateX(-50%);
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(193, 148, 52, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(193, 148, 52, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-image: var(--gradient-gold);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--text-dark);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.feature-card p {
    margin-bottom: 0;
}

/* Eligibility Section */
.eligibility {
    background-color: var(--background);
    position: relative;
    padding: 8rem 0;
}

.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eligibility-text h3 {
    color: var(--primary-light);
    margin: 2rem 0 1rem;
}

.eligibility-highlight {
    background-color: rgba(193, 148, 52, 0.1);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(193, 148, 52, 0.2);
}

.eligibility-highlight i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-top: 0.5rem;
}

.eligibility-highlight h3 {
    color: var(--primary-light);
    margin: 0 0 0.5rem;
}

.medical-conditions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.condition-item i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.eligibility-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(193, 148, 52, 0.3);
}

.image-accent {
    position: absolute;
    width: 50%;
    height: 50%;
    bottom: -10%;
    right: -10%;
    border-radius: 10px;
    background-image: var(--gradient-gold);
    opacity: 0.2;
    z-index: 1;
}

/* Documents Section */
.documents {
    background-color: var(--background-light);
    position: relative;
    padding: 8rem 0;
}

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

.document-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(193, 148, 52, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.document-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(193, 148, 52, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.document-card:hover .document-icon {
    background-image: var(--gradient-gold);
}

.document-icon i {
    font-size: 2rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.document-card:hover .document-icon i {
    color: var(--text-dark);
}

.document-card h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.document-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.documents-cta {
    text-align: center;
    margin-top: 4rem;
    background-color: rgba(193, 148, 52, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(193, 148, 52, 0.2);
}

.documents-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    background-color: var(--background);
    position: relative;
    padding: 8rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(193, 148, 52, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--card-bg);
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: var(--primary-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.faq-answer p {
    padding: 0 0 2rem;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: rgba(193, 148, 52, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

/* Testimonials Section */
.testimonials {
    background-color: var(--background-light);
    position: relative;
    padding: 8rem 0;
}

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

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(193, 148, 52, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-content {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(193, 148, 52, 0.1);
    padding-top: 1.5rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 2px solid var(--primary-light);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-light);
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background-color: var(--background);
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(rgba(27, 32, 39, 0.9), rgba(42, 54, 73, 0.9)), url('imagens/advogado-curitiba-pr.jpg') no-repeat center center/cover;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    color: var(--text);
}

.contact-motto {
    background: rgba(193, 148, 52, 0.1);
    border-left: 4px solid var(--primary-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.contact-motto h3 {
    margin: 0;
    color: var(--primary-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: var(--primary-light);
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(193, 148, 52, 0.1);
    color: var(--primary-light);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-social .social-icon:hover {
    background-image: var(--gradient-gold);
    transform: translateY(-5px);
    color: var(--text-dark);
}

.contact-form-container {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(193, 148, 52, 0.2);
}

.contact-form h3 {
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.contact-form p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(193, 148, 52, 0.2);
    border-radius: 0.5rem;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-check input {
    width: auto;
    margin-top: 0.3rem;
}

.form-check label {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text);
}

.form-check a {
    color: var(--primary-light);
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--darker);
    color: var(--text);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(193, 148, 52, 0.2);
}

.footer-top {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-image: var(--gradient-gold);
}

.footer-about p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(193, 148, 52, 0.1);
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-image: var(--gradient-gold);
    transform: translateY(-3px);
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 0.8rem;
    color: var(--primary-light);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-light);
    margin-top: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(193, 148, 52, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.form-success p {
    opacity: 0.8;
}

/* Media Queries */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 5rem 0;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content, .about-container, .eligibility-content, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        z-index: 1000;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(193, 148, 52, 0.1);
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        left: 30px;
        transform: none;
    }
    
    .process-item {
        justify-content: flex-start;
    }
    
    .process-content {
        width: 80%;
        margin-left: 60px !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .medical-conditions {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .btn {
        width: 100%;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}