
       /* style.css - Arquivo CSS separado */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Top Contact Bar */
.top-contact-bar {
    background-color: #0e659b;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #fff;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-icon:hover {
    background-color: #39b8db;
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    top: 46px; /* Alterado de 0 para 46px para compensar a altura da barra de contato */
    z-index: 1000;
}
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 116px; /* Alterado de 70px para 116px (70 + 46) */
    overflow: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
/* Responsive Styles for Top Contact Bar */
@media (max-width: 768px) {
    .top-contact-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
        gap: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    header {
        top: 80px; /* Ajuste para mobile */
    }
    
    .hero-slider {
        margin-top: 150px; /* Ajuste para mobile */
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    header {
        top: 100px; /* Ajuste para telas muito pequenas */
    }
    
    .hero-slider {
        margin-top: 170px; /* Ajuste para telas muito pequenas */
    }
}

/* ===================== */
/* LOGO                  */
/* ===================== */

.logo {
    height: 60px;      /* tamanho no PC */
    width: auto;
}

/* Logo no telemóvel */
@media (max-width: 768px) {
    .logo {
        height: 38px;
    }
}


nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #39b8db;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #39b8db;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: -10px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease-out;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease-out 0.3s both;
}

.slide-text {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: slideUp 1s ease-out 0.5s both;
}

.slide-button {
    display: inline-block;
    background-color: #0e659b;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out 0.7s both;
}

.slide-button:hover {
    background-color: #084062;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.slide-button i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.slide-button:hover i {
    transform: translateX(5px);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

.dot:hover {
    background-color: white;
    transform: scale(1.1);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #0e659b;
    color: white;
    padding: 60px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Seção Oval com Formulário */
.oval-form-section {
    padding: 100px 0;
    position: relative;
    background-color: #f0f7f2;
    margin: 80px 0;
    overflow: hidden;
}

.oval-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imagens/IMG1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.8);
    z-index: 1;
}

.oval-container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50% / 10%;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.oval-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.promo-side {
    flex: 1;
    min-width: 300px;
}

.promo-side h2 {
    font-size: 32px;
    color: #0e659b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-side h2 span {
    color: #100356;
    font-size: 36px;
    display: block;
    margin-top: 5px;
}

.promo-side p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.discover-btn {
    display: inline-block;
    background-color: #0e659b;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.discover-btn:hover {
    background-color: #084062;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.discover-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.discover-btn:hover i {
    transform: translateX(5px);
}

.form-side {
    flex: 1;
    min-width: 300px;
}

.form-title {
    font-size: 22px;
    color: #0e659b;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

/* FORMULÁRIO COM EMAILJS */
#appointmentForm.appointment-form {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 150px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.form-group label::after {
    content: ' *';
    color: #dc3545;
    display: none;
}

.form-group label[for]:not([for=""])::after {
    display: inline;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #0e659b;
    box-shadow: 0 0 0 3px rgba(14, 101, 155, 0.1);
}

.form-control.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.form-control.success {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.05);
}

/* Mensagens de erro e sucesso */
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
    padding-left: 5px;
}

.success-message {
    color: #28a745;
    font-size: 14px;
    margin-top: 15px;
    display: none;
    text-align: center;
    padding: 10px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
    font-weight: 500;
}

.error-message.show,
.success-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Botão de submit */
.submit-row {
    margin-top: 25px;
    position: relative;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #100356;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
    background-color: #0e659b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #6c757d;
}

.submit-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.submit-btn:hover:not(:disabled) i {
    transform: translateX(5px);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-btn.loading .spinner {
    display: inline-block;
}

.submit-btn.loading #btnText {
    opacity: 0.8;
}

/* Tooltip de validação */
.form-control:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dbdbd5;
}

/* Responsividade */
@media (max-width: 768px) {
    .oval-container {
        border-radius: 20px;
        padding: 40px 20px;
    }
    
    .oval-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .promo-side,
    .form-side {
        min-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .promo-side h2 {
        font-size: 28px;
    }
    
    .promo-side h2 span {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .oval-form-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .appointment-form {
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
}

/* Efeitos de foco para acessibilidade */
.form-control:focus-visible {
    outline: 2px solid #0e659b;
    outline-offset: 2px;
}

/* Estilos para o select */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Animações suaves */
.appointment-form {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0e659b;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0e659b;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    background-color: #f0f6f7;
    padding: 80px 0;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    border-top: 5px solid #0e659b;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #0e659b;
    margin-bottom: 20px;
}

.price sup {
    font-size: 24px;
    vertical-align: super;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Video */
.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3), rgba(12,3,51,0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content{
    text-align: center;
}
.content h1{
    font-size: 160px;
    color: #fff;
    font-weight: 600px;
    transition: 0.5s;
}
.content h1:hover{
    -webkit-text-stroke: 2px #fff ;
    color: transparent;
}
.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 50px;
}
.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    
}


.back-video {
    width: 100%;
    height: 70vh; 
}


@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: 70vh; 
    }
}
@media (max-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: 70vh; 
    }
}


.back-video {
    width: 100%;
    max-height: 70vh; 
    min-height: 500px; 
}


.hero {
    height: 70vh;
    min-height: 500px; 
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 auto 20px;
    overflow: hidden;      
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;       
    object-position: center; 
    display: block;
}


.team-member h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0e659b;
}

.team-member p {
    color: #666;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #0e659b;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #084062;
    transform: scale(1.05);
}

.center-button {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #0e659b;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #0e659b;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slide-title {
        font-size: 36px;
    }
    
    .slide-text {
        font-size: 18px;
    }
    
    .hero-slider {
        min-height: 600px;
    }
    
    .stats {
        padding: 40px 20px;
    }
    
    .stat-item {
        width: 50%;
    }
    
    .oval-container {
        border-radius: 30px;
        max-width: 95%;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
        padding: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-title {
        font-size: 30px;
    }
    
    .slide-text {
        font-size: 16px;
    }
    
    .slide-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .prev-arrow {
        left: 15px;
    }
    
    .next-arrow {
        right: 15px;
    }
    
    .stats {
        margin-top: -30px;
    }
    
    .oval-content {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 24px;
    }
    
    .slide-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-slider {
        min-height: 450px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .oval-container {
        padding: 40px 25px;
    }
    
    .promo-side h2 {
        font-size: 26px;
    }
    
    .promo-side h2 span {
        font-size: 28px;
    }
}
  /* Estilos específicos para a seção Missão, Visão e Valores */
        .mission-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .mission-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .mission-header h1 {
            font-size: 48px;
            color: #0e659b;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .mission-header h2 {
            font-size: 32px;
            color: #333;
            font-weight: 400;
            margin-bottom: 20px;
        }
        
        .mission-divider {
            width: 100px;
            height: 3px;
            background-color: #0e659b;
            margin: 0 auto;
        }
        
        .mission-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .mission-card {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
        }
        
        .mission-card h3 {
            color: #0e659b;
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
            position: relative;
        }
        
        .mission-card h3:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: #100356;
        }
        
        .mission-card p {
            color: #555;
            line-height: 1.8;
            font-size: 16px;
        }
        
        .values-list {
            list-style: none;
            padding: 0;
        }
        
        .values-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
        }
        
        .values-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #0e659b;
            font-weight: bold;
        }
        
        .value-name {
            font-weight: bold;
            color: #0e659b;
            display: block;
            margin-bottom: 5px;
        }
        
        .value-description {
            color: #555;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .mission-header h1 {
                font-size: 36px;
            }
            
            .mission-header h2 {
                font-size: 24px;
            }
            
            .mission-card {
                padding: 30px;
            }
            
            .mission-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .mission-header h1 {
                font-size: 28px;
            }
            
            .mission-header h2 {
                font-size: 20px;
            }
            
            .mission-card {
                padding: 20px;
            }
        }