/* Reset mínimo */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #1a1a1a;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.container {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand {
    width: min(400px, 70vw);
    height: auto;
    display: block;
    margin: 0 auto 32px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: scale(1.02);
}

h1 {
    margin: 8px 0 16px;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-title {
    margin: 16px 0 32px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #007bff;
    text-shadow: 0 3px 6px rgba(0, 123, 255, 0.2);
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
}

.subtitle {
    margin: 0 0 32px;
    color: #6c757d;
    font-size: clamp(16px, 2.4vw, 20px);
    font-weight: 400;
    opacity: 0.9;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.contact-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.dropdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin: 0;
}

.whatsapp-icon-small {
    width: 20px;
    height: 20px;
    fill: #25D366;
    flex-shrink: 0;
}

.contact-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
}

.contact-select:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.contact-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-select option {
    padding: 8px;
    font-weight: 500;
}

.email-contact {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.email-contact a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-contact a:hover {
    color: #0056b3;
    text-decoration: underline;
}

footer {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 20px 20px;
    border-radius: 0 0 20px 20px;
    padding: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.contact-info p {
    margin: 4px 0;
    font-size: 13px;
    line-height: 1.4;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 24px 16px;
        border-radius: 16px;
    }

    footer {
        margin: 0 10px 10px;
        border-radius: 0 0 16px 16px;
        padding: 16px;
    }

    .footer-info {
        gap: 12px;
    }

    .contact-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 5px;
        padding: 20px 12px;
    }

    footer {
        margin: 0 5px 5px;
        padding: 12px;
    }

    .brand {
        width: min(300px, 85vw);
        margin-bottom: 24px;
    }

    .contact-section {
        gap: 12px;
        margin-top: 20px;
    }

    .contact-select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .dropdown-label {
        font-size: 14px;
    }

    .whatsapp-icon-small {
        width: 18px;
        height: 18px;
    }

    .email-contact {
        font-size: 13px;
    }
}

/* Estilos específicos para Política de Privacidade */
.privacy-nav {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.privacy-nav h3 {
    margin: 0 0 16px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.privacy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.privacy-nav li {
    margin: 0;
}

.privacy-nav a {
    display: block;
    padding: 8px 12px;
    color: #007bff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.privacy-nav a:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateX(4px);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #007bff;
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.privacy-section h4 {
    color: #495057;
    font-size: 16px;
    font-weight: 600;
    margin: 16px 0 8px;
}

.privacy-section p {
    line-height: 1.6;
    margin-bottom: 16px;
    color: #495057;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #495057;
}

.info-category {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    border-left: 3px solid #28a745;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.usage-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-2px);
}

.usage-item h4 {
    margin: 0 0 8px;
    color: #007bff;
}

.usage-item p {
    margin: 0;
    font-size: 14px;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.highlight-box p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.security-item {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.security-item h4 {
    margin: 0 0 8px;
    color: #28a745;
}

.security-item p {
    margin: 0;
    font-size: 14px;
    color: #155724;
}

.rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.right-item {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid #007bff;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.right-item h4 {
    margin: 0 0 8px;
    color: #007bff;
}

.right-item p {
    margin: 0;
    font-size: 14px;
    color: #004085;
}

.update-info {
    background: rgba(108, 117, 125, 0.1);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.update-info p {
    margin: 0 0 8px;
    font-weight: 600;
    color: #495057;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.contact-method {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-method h4 {
    margin: 0 0 12px;
    color: #007bff;
    font-size: 18px;
}

.contact-method p {
    margin: 0;
    color: #495057;
}

.contact-method a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsividade para política de privacidade */
@media (max-width: 768px) {
    .privacy-nav ul {
        grid-template-columns: 1fr;
    }

    .privacy-section {
        padding: 16px;
        margin-bottom: 24px;
    }

    .usage-grid,
    .security-features,
    .rights-list,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .privacy-section h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-nav {
        padding: 16px;
        margin: 16px 0;
    }

    .privacy-section {
        padding: 12px;
    }

    .info-category,
    .usage-item,
    .security-item,
    .right-item,
    .contact-method {
        padding: 12px;
    }
}

/* Estilos específicos para página Sobre Nós */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 40px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.about-intro {
    text-align: center;
}

.about-intro h2 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
    font-weight: 400;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #007bff;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #007bff;
    margin: 24px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.value-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.value-item h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
}

.value-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-2px);
}

.mission-card {
    border-left: 4px solid #28a745;
}

.vision-card {
    border-left: 4px solid #ffc107;
}

.mission-card h3,
.vision-card h3 {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 16px;
}

.mission-card p,
.vision-card p {
    color: #495057;
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

.about-section .contact-section {
    text-align: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.about-section .contact-section h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
}

.about-section .contact-section p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 24px;
}

/* Responsividade para página Sobre Nós */
@media (max-width: 768px) {
    .about-section {
        padding: 20px;
        margin-bottom: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }

    .about-intro h2 {
        font-size: 24px;
    }

    .lead-text {
        font-size: 16px;
    }

    .highlight-text {
        font-size: 18px;
        padding: 12px;
    }

    .value-item {
        padding: 20px;
    }

    .mission-card,
    .vision-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 16px;
    }

    .value-item {
        padding: 16px;
    }

    .mission-card,
    .vision-card {
        padding: 16px;
    }

    .value-icon {
        font-size: 36px;
    }

    .value-item h3 {
        font-size: 18px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 20px;
    }
}