/* ========================================
   CSS PARA PÁGINAS ESTÁTICAS - VICENTE
   ======================================== */

/* ===== PÁGINA SOBRE ===== */

.about-hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.about-history {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.about-values {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(1, 60, 16, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.value-title {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-description {
    color: #666;
    line-height: 1.6;
}

.about-mission {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.mission-card, .vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-title, .vision-title {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 600;
}

.mission-text, .vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo .photo-placeholder {
    width: 120px;
    height: 120px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 3rem;
}

.member-name {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.member-role {
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.member-description {
    color: #777;
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PÁGINA CONTATO ===== */

.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.contact-card-title {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-card-text {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
}

.contact-form {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #000000;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #000000;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.contact-map {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #000000;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.map-placeholder p {
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.map-placeholder small {
    font-size: 1rem;
    opacity: 0.8;
}

.contact-faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #000000;
}

.faq-question {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* ========================================
   GUIA DE TAMANHOS
   ======================================== */

.size-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.size-guide-header {
    text-align: center;
    margin-bottom: 3rem;
}

.size-guide-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.size-guide-header p {
    font-size: 1.1rem;
    color: #666;
}

.size-guide-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Calculadora de Tamanhos */
.size-calculator {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.size-calculator h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.size-calculator > p {
    color: #666;
    margin-bottom: 2rem;
}

.size-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.size-form .form-group {
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.size-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.size-form input,
.size-form select {
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.size-form input:focus,
.size-form select:focus {
    outline: none;
    border-color: #333;
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.size-result {
    background: #f8f9fa;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin-top: 1rem;
}

/* Tabelas de Referência */
.size-tables {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.size-tables h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.size-table-section {
    margin-bottom: 3rem;
}

.size-table-section:last-child {
    margin-bottom: 0;
}

.size-table-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.size-table th {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.size-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid #e1e5e9;
    font-size: 0.9rem;
}

.size-table tr:nth-child(even) {
    background: #f8f9fa;
}

.size-table tr:hover {
    background: #e9ecef;
}

.size-table td:first-child {
    font-weight: 600;
    color: #333;
}

/* Dicas de Medição */
.measurement-tips {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.measurement-tips h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.tip-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #333;
}

.tip-card h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-title, .contact-title {
        font-size: 2.5rem;
    }
    
    .about-section, .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .values-grid, .team-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .size-guide-container {
        padding: 1rem;
    }
    
    .size-guide-header h1 {
        font-size: 2rem;
    }
    
    .size-form {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .size-table th,
    .size-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* @media (max-width: 480px) {
    .size-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero, .contact-hero {
        padding: 60px 0;
    }
    
    .about-title, .contact-title {
        font-size: 2rem;
    }
    
    .about-subtitle, .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}

/* ===== PÁGINA TROCAS E DEVOLUÇÕES ===== */

.exchanges-hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.exchanges-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.exchanges-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.exchanges-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.exchanges-policy {
    padding: 80px 0;
    background: #f8f9fa;
}

.exchanges-section {
    max-width: 1000px;
    margin: 0 auto;
}

.exchanges-content .section-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
}

.exchanges-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.policy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 10px;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.exchanges-how {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.exchanges-conditions {
    padding: 80px 0;
    background: #f8f9fa;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.condition-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.condition-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.condition-card:first-child .condition-icon {
    background: #28a745;
    color: white;
}

.condition-card:last-child .condition-icon {
    background: #dc3545;
    color: white;
}

.condition-card h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 20px;
}

.condition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.condition-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.condition-list li:last-child {
    border-bottom: none;
}

.exchanges-types {
    padding: 80px 0;
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.type-card h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 15px;
}

.type-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.exchanges-contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-method {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.method-content h3 {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 10px;
}

.method-content p {
    color: #666;
    margin-bottom: 20px;
}

.exchanges-faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade para Trocas e Devoluções */
@media (max-width: 768px) {
    .exchanges-title {
        font-size: 2.5rem;
    }
    
    .policy-highlights,
    .steps-grid,
    .conditions-grid,
    .types-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-card,
    .type-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .exchanges-hero {
        padding: 60px 0;
    }
    
    .exchanges-title {
        font-size: 2rem;
    }
    
    .exchanges-subtitle {
        font-size: 1.1rem;
    }
    
    .condition-card {
        padding: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
}
