/* Page-specific styles */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cinza-grafite) 0%, var(--vinho) 50%, var(--cinza-grafite) 100%);
    position: relative;
    padding: 6rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-hero-secondary {
    padding: 0.875rem 2rem;
    border: 2px solid white;
    color: white;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Content Layouts */
.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #374151;
}

/* Background Variations */
.bg-white {
    background: white;
}

.bg-gray {
    background: #F9FAFB;
}

.bg-light {
    background: rgba(74, 14, 20, 0.05);
}

.bg-dark {
    background: var(--cinza-grafite);
}

.bg-vinho {
    background: var(--vinho);
}

/* Page Header */
.page-header {
    padding: 6rem 0 4rem;
}

.page-header h1 {
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.area-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 14, 20, 0.05);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--vinho);
    transition: all 0.3s ease;
}

.area-card:hover .area-icon {
    background: var(--vinho);
    color: white;
}

.area-title {
    color: var(--cinza-grafite);
    transition: color 0.3s ease;
}

.area-card:hover .area-title {
    color: var(--vinho);
}

/* Full Areas Grid */
.areas-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .areas-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .areas-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

.area-card-full {
    background: white;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.area-card-full:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.area-icon-large {
    width: 64px;
    height: 64px;
    background: rgba(74, 14, 20, 0.05);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--vinho);
    transition: all 0.3s ease;
}

.area-card-full:hover .area-icon-large {
    background: var(--vinho);
    color: white;
}

.area-title-full {
    margin-bottom: 0.75rem;
}

.area-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
}

.area-link {
    margin-top: 1.5rem;
    color: var(--vinho);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.area-card-full:hover .area-link {
    opacity: 1;
}

/* Diferenciais Grid */
.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.diferencial-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.diferencial-line {
    width: 4px;
    height: 48px;
    background: var(--vinho);
}

.diferencial-title {
    color: var(--vinho);
    font-size: 1.125rem;
}

.diferencial-text {
    color: #374151;
    line-height: 1.7;
}

/* Newsletter */
.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-white {
    padding: 0.875rem 2rem;
    background: white;
    color: var(--vinho);
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
    padding: 0.875rem 2rem;
    border: 2px solid white;
    color: white;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white-outline:hover {
    background: white;
    color: var(--vinho);
}

/* Subtitle */
.subtitle {
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Text utilities */
.text-white {
    color: white;
}