 /* Reset e estilos básicos */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat' , sans-serif;
    background-color: #000049;
    color: navy;
    line-height: 1.6;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    display: inline-block;
    height: 80px; /* Ajuste conforme necessário */
}

.logo-image {
    height: 100%;
    width: auto;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 3px;
    }
    
    .logo-link {
        height: 70px;
    }
    
    nav ul {
        font-size: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Cabeçalho */
header {
    background-color: #f3ede0;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

header.scrolled .logo {
    font-size: rem;
    margin-bottom: 5px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    transition: all 0.3s ease;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #000049;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1AB0A1;
}
.hero-content {
    text-align: left;  /* Alterado de center para left */
    max-width: 800px;
    margin: 0;
    padding: 0 20px;
}

.coren {
    font-family: 'Montserrat' , sans-serif;
    font-size: 1rem;
    color:  #f3ede0;
}

.name {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color:  #f3ede0;
    font-weight: bold;
}

.quote {
    font-family: 'Montserrat' , sans-serif;
    font-size: 1rem;
    color:  #f3ede0;
    max-width: 90%;
}

.description {
    font-family: 'Montserrat' , sans-serif;
    font-size: 1rem;
    margin-bottom: 30px;
    color:  #f3ede0;
    max-width: 90%;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .coren {
        font-size: 1rem;
    }
    
    .name {
        font-size: 1.5rem;
    }
    
    .quote {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .description {
        font-size: 1rem;
        max-width: 100%;
    }
}
/* Hero Section */
.hero {
    background-color: #000049;
    padding: 180px 20px 80px;
    text-align: justify;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .cta-button {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.hero.animated h1,
.hero.animated p,
.hero.animated .cta-button {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-block;
    background-color:  #f3ede0;
    color:#000049;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #1AB0A1;
    transform: 0.5seg;
}

/* Serviços */
.services {
    padding: 80px 20px;
    text-align: center;
}

.services h2 {
    font-family:  "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #f3ede0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.services p {
    font-size: 1rem;
    font-family: 'Montserrat' , sans-serif ;
    color: #f3ede0;
}

.service-grid {
    font-family: 'Montserrat' , sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    color: #000049;
    flex: 1 1 300px;
    background-color: #f3ede0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    
}



.services.animated h2,
.services.animated .service-card {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.2s; }
.service-card:nth-child(2) { transition-delay: 0.4s; }
.service-card:nth-child(3) { transition-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-family: "Montserrat" , sans-serif;
    margin: 20px 0 15px;
    color: #000049;
}

/* Sobre */
.about {
    border-radius: 10px;
    background-color: #f3ede0;
    padding: 20px 20px;
    text-align: center;
}

.about h2 {
    text-align: left;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000049  ;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    font-weight: bold;
    margin-bottom: 80px;
}

.about p {
    font-family: 'Montserrat' , sans-serif;
    text-align: left;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about.animated h2,
.about.animated p {
    opacity: 1;
    transform: translateY(0);
}

.about p:nth-child(2) { transition-delay: 0.2s; }
.about p:nth-child(3) { transition-delay: 0.4s; }

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about-image {
    flex: 1;

}
@media (max-width: 768px) {
    .about-text {
        font-size: 0.8rem;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .about h2 {
        font-size: 1.5rem;
    }
}

.rounded-right {
    width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px; /* Arredonda apenas o lado direito */
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    max-height: 700px;
}

/* Responsivo */

/* Contato */
/* Rodapé */
/* SEÇÃO DE CONTATO */
.contact-section {
  position: relative;
  width: 100%;
  background: #f8f9fa; /* Cor de fundo opcional */
  padding: 60px 0 100px 0;
}

.contact-title {
  font-family: "Playfair Display", serif;
  text-align: center;
  color: #000049;
  margin-bottom: 100px;
  font-size: 1.8rem;
}

/* CONTAINER DOS BOTÕES */
.contact-buttons-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BOTÕES COM ANIMAÇÃO 3D */
.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-buttons li {
  margin: 0;
}

.social-buttons li a {
  text-decoration: none;
  display: block;
  width: 180px;
  height: 80px;
  background: #fff;
  text-align: left;
  padding-left: 20px;
  transform: rotate(-30deg) skew(25deg) translate(0, 0);
  transition: all 0.5s ease;
  box-shadow: -15px 15px 10px rgba(0,0,0,0.1);
  position: relative;
}

.social-buttons li a i {
  font-size: 36px;
  color: #000049;
  line-height: 80px;
  transition: all 0.5s ease;
  padding-right: 12px;
}

.social-buttons li a span {
  position: absolute;
  top: 30px;
  left: 60px;
  color: #262626;
  letter-spacing: 1px;
  transition: all 0.5s ease;
  font-size: 0.95rem;
}

/* EFEITOS 3D */
.social-buttons li a:before {
  content: '';
  position: absolute;
  top: 10px;
  left: -18px;
  height: 100%;
  width: 18px;
  background: #e0e0e0;
  transform: rotate(0deg) skewY(-45deg);
  transition: all 0.5s ease;
}

.social-buttons li a:after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: -9px;
  height: 18px;
  width: 100%;
  background: #e0e0e0;
  transform: rotate(0deg) skewX(-45deg);
  transition: all 0.5s ease;
}

/* ANIMAÇÃO HOVER */
.social-buttons li a:hover {
  transform: rotate(-30deg) skew(25deg) translate(15px, -10px);
  box-shadow: -30px 30px 20px rgba(0,0,0,0.15);
}

/* CORES DOS BOTÕES */
.social-buttons li:hover .whatsapp {
  background: #25D366;
}
.social-buttons li:hover .whatsapp:before {
  background: #128C7E;
}
.social-buttons li:hover .whatsapp:after {
  background: #34B7F1;
}

.social-buttons li:hover .instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-buttons li:hover .instagram:before {
  background: #833AB4;
}
.social-buttons li:hover .instagram:after {
  background: #C13584;
}
.social-buttons li:hover .email {
  background: linear-gradient(45deg, #000049, #1F1FFF, #4949FF, #4949FF, #000049);
}
.social-buttons li:hover .email:before {
  background: #000049;
}
.social-buttons li:hover .email:after {
  background: #0000ff;
}
.social-buttons li:hover i,
.social-buttons li:hover span {
  color: #000000 !important;
}
@media (max-width: 768px) {
  .social-buttons {
    flex-direction: column; /* Alinha os botões verticalmente */
    align-items: center; /* Centraliza os botões */
  }
  .social-buttons li a i {
    font-size: 28px; /* Reduz o tamanho do ícone */
    line-height: 70px;
  }
}
/* Botão de voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2a5bd7;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1e4ab3;
    transform: translateY(-5px);
}
/* Adicione estas regras de media query no final do seu CSS */

@media (max-width: 768px) {
/* Ajustes para o cabeçalho */
header {
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

nav ul {
    flex-wrap: wrap;
}

nav ul li {
    margin: 5px 10px;
}

/* Ajustes para a hero section */
.hero {
    padding: 150px 20px 60px;
}

.hero h1 {
    font-size: 2rem;
}

.hero p {
    font-size: 1rem;
}



/* Ajustes para o formulário */
.contact-form {
    padding: 0 15px;
}

/* Ajustes gerais de padding */
.services, .about, .contact {
    padding: 60px 15px;
}

/* Botão de voltar ao topo menor */
.back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
}
}

@media (max-width: 480px) {
/* Ajustes extras para telas muito pequenas */
.hero h1 {
    font-size: 1.8rem;
}

.cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.services h2, .about h2, .contact h2 {
    font-size: 1.8rem;
}
}
.diferenciais-section {
    border-radius: 20px;
    padding: 80px 20px;
    background-color: #f3ede0;
    max-width: 2000px;
    margin: 0 auto;
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 50px;
}

.diferenciais-header h2 {
    font-size: 1.2rem;
    font-family: 'Montserrat' , sans-serif;
    color: #000049;
    font-weight: 500;
}

.diferenciais-header h3 {
    font-family: "Playfair Display", serif ;
    font-size: 2rem;
    color: #000049;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: #000049;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-5px);
}

.diferencial-icon {
    font-size: 2.5rem;
    color: #f3ede0;
    margin-bottom: 20px;
}

.diferencial-content h4 {
    font-family: "Montserrat" , sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f3ede0;
}

.diferencial-content p {
    font-family: "Montserrat" , sans-serif;
    color: #f3ede0;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .diferencial-card {
        padding: 25px;
    }
}

.feedback-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.feedback-author {
    font-weight: bold;
    margin-top: 15px;
    color: #2a5bd7;
}
.feedbacks-section {
    background-color: #000049;
    padding: 80px 20px;
}
.feedbacks-title{
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    font-family:  "Playfair Display", serif;
    color: #f3ede0;
}

.feedbacks-subtitle {
    font-family: "Montserrat" , sans-serif;
    text-align: center;
    margin-bottom: 40px;
    color: #f3ede0;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.feedback-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-author .material-symbols-outlined {
    color: #2a5bd7;
    font-size: 2rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .feedbacks-grid {
        grid-template-columns: 1fr;
    }
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f3ede0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    font-size: 4rem;
    color: #000049;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite ease-in-out;
}

.loader-text {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: bold;
    color: #000049;
    margin-bottom: 30px;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0;
    background: #000049;
    border-radius: 2px;
    transition: width 0.3s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Quando carregado */
.loaded .loader {
    opacity: 0;
    pointer-events: none;
}
.footer-container{
    text-align: center;
    background-color: #000049;
    color: #f3ede0;
    font-family: 'Montserrat' , sans-serif;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .footer-container{
    font-size: 0.7rem;
}
}