@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600;700&family=Montserrat:wght@500&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
    padding: 0; 
    color: #1f2937; /* Cinza escuro para contraste alto */
    background-color: #f1f5f9; /* Cinza claro para fundo mais neutro */
    line-height: 1.7; 
    font-weight: 400; 
}
header { 
    background: linear-gradient(135deg, #007BFF 0%, #1e3a8a 100%); 
    color: white; 
    padding: 30px 20px; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.3); /* Sombra mais forte */
}
header h1 { 
    margin: 0; 
    font-family: 'Poppins', sans-serif; 
    font-size: 2.5em; 
    font-weight: 700; 
    white-space: nowrap; 
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.9);
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* Sombra mais profunda no texto */
    letter-spacing: -0.02em; 
}
header p { 
    margin: 10px 0 0; 
    font-size: 1.2em; 
    font-family: 'Inter', sans-serif; 
    opacity: 0.95; 
    font-weight: 500; 
}
nav { 
    background: linear-gradient(135deg, #0056b3 0%, #1e40af 100%); 
    padding: 15px; 
    text-align: center; 
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.4); /* Sombra mais intensa */
}
nav a { 
    font-family: 'Montserrat', sans-serif; 
    color: white; 
    margin: 0 15px; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.95em; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Curva de easing mais natural */
    padding: 10px 16px; /* Mais preenchimento para "botão" */
    border-radius: 25px; 
    position: relative; /* Para efeitos 3D */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Sombra base para volume */
}
nav a:hover { 
    color: #FFD700; 
    background: rgba(255, 215, 0, 0.15); 
    transform: translateY(-3px); /* Lift maior */
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3); /* Sombra dourada no hover */
}
nav a:active { 
    transform: translateY(0px); /* "Afunda" no clique */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); /* Sombra pressionada */
    background: rgba(255, 215, 0, 0.25); /* Fundo mais escuro no active */
}
main { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 50px 20px; 
}
section { 
    padding: 50px 0; 
    background: white; /* Alterna com body para variação */
    border-radius: 16px; 
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08); /* Sombra mais pronunciada */
    margin: 20px 0; 
    border: 1px solid rgba(0, 123, 255, 0.1); /* Borda sutil azul */
}
h1, h2 { 
    font-family: 'Poppins', sans-serif; 
    color: #1e3a8a; /* Azul escuro para títulos */
    text-align: center; 
    font-weight: 600; 
    letter-spacing: -0.01em; 
}
h1 { font-size: 2.8em; margin-bottom: 20px; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); }
h2 { font-size: 2em; margin-bottom: 30px; }
ul { 
    list-style-type: none; 
    padding: 0; 
}
ul li { 
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); /* Gradiente branco claro */
    margin: 15px 0; 
    padding: 20px; 
    border-radius: 16px; 
    border-left: 5px solid #007BFF; /* Borda esquerda mais grossa */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease; 
    font-family: 'Inter', sans-serif; 
    font-weight: 500; 
    color: #1f2937; /* Cinza escuro para texto */
}
ul li:hover { 
    transform: translateX(8px); /* Slide maior */
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.2); /* Sombra azul no hover */
    border-left-color: #10b981; /* Verde acento no hover */
}
img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 16px; 
    display: block; 
    margin: 30px auto; 
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); /* Sombra mais dramática */
    transition: all 0.3s ease; 
}
img:hover { 
    transform: scale(1.03) rotate(1deg); /* Zoom + leve rotação para dinamismo */
    box-shadow: 0 16px 48px rgba(0, 123, 255, 0.25); 
}
form { 
    max-width: 500px; 
    margin: 0 auto; 
    background: white; 
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); 
    font-family: 'Inter', sans-serif; 
    border: 1px solid rgba(16, 185, 129, 0.2); /* Verde sutil na borda */
}
input, textarea { 
    width: 100%; 
    padding: 15px; 
    margin: 12px 0; 
    border: 2px solid #e2e8f0; /* Cinza claro para borda */
    border-radius: 10px; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
    transition: all 0.3s ease; 
    font-size: 1em; 
    color: #1f2937; 
    background: #f8fafc; /* Fundo claro para contraste */
}
input:focus, textarea:focus { 
    border-color: #10b981; /* Verde para foco */
    outline: none; 
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15); 
    background: white; 
}
button { 
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Verde gradiente para botão */
    color: white; 
    padding: 15px 30px; 
    border: none; 
    border-radius: 10px; 
    cursor: pointer; 
    font-size: 1.1em; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 500; 
    transition: all 0.3s ease; 
    width: 100%; 
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3); /* Sombra verde inicial */
}
button:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4); 
}
button:active { 
    transform: translateY(0px); /* Pressionado */
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3); 
}
#map { 
    height: 400px; 
    width: 100%; 
    border-radius: 16px; 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); 
}
.contact-info { 
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); 
    padding: 20px; 
    border-radius: 16px; 
    margin-bottom: 25px; 
    text-align: center; 
    font-family: 'Inter', sans-serif; 
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); 
    color: #1f2937; 
}
.contact-info a { 
    color: #10b981; /* Verde para links */
    text-decoration: none; 
    font-weight: 500; 
    transition: color 0.3s ease; 
}
.contact-info a:hover { color: #059669; }
footer { 
    background: linear-gradient(135deg, #007BFF 0%, #1e3a8a 100%); 
    color: white; 
    text-align: center; 
    padding: 25px; 
    margin-top: 50px; 
    box-shadow: 0 -8px 32px rgba(0, 123, 255, 0.3); 
    font-family: 'Inter', sans-serif; 
}
@media (max-width: 768px) { 
    main { padding: 30px 15px; } 
    nav a { display: block; margin: 8px 0; } 
    header h1 { font-size: 2em; } 
    section { margin: 10px 0; padding: 30px 0; border-radius: 12px; }
    ul li { margin: 10px 0; }
}
.slider-container {
    position: relative;
    max-width: 100%;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.slider {
    position: relative;
    width: 100%;
    height: 400px; /* Altura fixa */
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Fade suave */
}
.slide img {
    transition: transform 0.3s ease; /* Transição suave para zoom */
}
.slide:hover img {
    transform: scale(1.05); /* Zoom de 5% no hover */
}
.slider-container:hover .slide-caption {
    opacity: 0.9; /* Caption ligeiramente mais opaca no hover para não sumir */
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
}
.slide-caption h3 {
    margin: 0 0 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
}
.slider-prev, .slider-next {
    position: absolute;
    bottom: 10px; /* Parte inferior */
    background: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente */
    color: white;
    border: none;
    font-size: 1em; /* Menor para compacto */
    padding: 5px 8px; /* Padding reduzido */
    cursor: pointer;
    border-radius: 50%; /* Redondo */
    transition: background 0.3s ease;
    z-index: 10;
    width: 30px; /* Largura fixa para uniformidade */
    height: 30px; /* Altura fixa */
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-prev { 
    left: 10px; /* Esquerda clara */
}
.slider-next { 
    right: 10px; /* Direita clara */
}
.slider-prev:hover, .slider-next:hover { 
    background: rgba(0, 123, 255, 0.8); 
}
.slider-dots {
    text-align: center;
    padding: 10px 0;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.dot.active, .dot:hover { background-color: #007BFF; }
@media (max-width: 768px) {
    .slider { height: 250px; }
    .slide-caption { left: 10px; right: 10px; bottom: 10px; font-size: 0.9em; }
    .slider-prev, .slider-next { font-size: 1.5em; padding: 5px; }
}