@media(min-width:768px){.elementor-4035 .elementor-element.elementor-element-f848388{width:100%;}}/* Start custom CSS for html, class: .elementor-element-15336f4 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Variáveis de Cores */
:root {
  --coe-primary: #564733; 
  --coe-bg: #DFDCD5; 
  --coe-bg-light: #F4F2EE; 
  --coe-white: #ffffff;
  --coe-text-dark: #2C241B;
  --coe-whatsapp: #25D366; 
}

/* COMPORTAMENTO DO SCROLL */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* Base */
.coe-landing-wrapper {
  font-family: 'Poppins', sans-serif;
  background-color: var(--coe-bg);
  color: var(--coe-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
.coe-landing-wrapper img { max-width: 100%; height: auto; display: block; }
.coe-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.coe-bg-light { background-color: var(--coe-bg-light); }

/* Tipografia */
.coe-landing-wrapper h1, .coe-landing-wrapper h2, .coe-landing-wrapper h3, .coe-landing-wrapper h4 {
  color: var(--coe-primary);
  font-weight: 700;
  margin-bottom: 20px;
}
.coe-landing-wrapper p { font-size: 1.05rem; font-weight: 300; margin-bottom: 20px; }

/* Botões */
.coe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}
.coe-btn svg { width: 20px; height: 20px; fill: currentColor; }
.coe-btn-large { padding: 18px 40px; font-size: 1.1rem; }

.coe-btn-whatsapp { background-color: var(--coe-whatsapp); color: var(--coe-white); }
.coe-btn-whatsapp:hover { background-color: #1ebe57; transform: translateY(-2px); color: white; }

/* Header Fixo e Logo */
.coe-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--coe-primary);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 15px 0;
}

.coe-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.coe-logo-header { 
  width: 50px; 
  max-width: 60px; 
  height: auto; 
  aspect-ratio: 1/1; 
  object-fit: contain; 
  display: block;
}

.coe-btn-header { background: var(--coe-white); color: var(--coe-primary); padding: 10px 25px; }
.coe-btn-header:hover { background: var(--coe-bg); color: var(--coe-primary); }

/* NAVEGAÇÃO DESKTOP */
.coe-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.coe-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}
.coe-nav-list a {
  text-decoration: none;
  color: var(--coe-white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}
.coe-nav-list a:hover { color: var(--coe-bg); }
.coe-nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--coe-bg);
  transition: width 0.3s ease;
}
.coe-nav-list a:hover::after { width: 100%; }

/* BOTÃO HAMBURGER MOBILE */
.coe-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.coe-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--coe-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* CLASSES DE ANIMAÇÃO AO ROLAR */
.coe-animate {
  opacity: 0;
  visibility: hidden;
}
.coe-animate.fade-up { transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s; }
.coe-animate.fade-left { transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s; }
.coe-animate.fade-right { transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s; }
.coe-animate.in-view { opacity: 1; visibility: visible; transform: translate(0, 0); }

/* Hero Section */
.coe-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px; 
  overflow: hidden;
}

.coe-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.coe-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  animation: coeHeroCarousel 40s linear infinite;
}

/* Configuração de Delays para 8 slides (40s total / 5s cada) */
.coe-hero-slide:nth-child(1) { animation-delay: 0s; }
.coe-hero-slide:nth-child(2) { animation-delay: 5s; }
.coe-hero-slide:nth-child(3) { animation-delay: 10s; }
.coe-hero-slide:nth-child(4) { animation-delay: 15s; }
.coe-hero-slide:nth-child(5) { animation-delay: 20s; }
.coe-hero-slide:nth-child(6) { animation-delay: 25s; }
.coe-hero-slide:nth-child(7) { animation-delay: 30s; }
.coe-hero-slide:nth-child(8) { animation-delay: 35s; }

@keyframes coeHeroCarousel {
  0% { opacity: 0; }
  2% { opacity: 1; }
  12.5% { opacity: 1; }
  14.5% { opacity: 0; }
  100% { opacity: 0; }
}

.coe-hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(44, 36, 27, 0.75); z-index: 1; }
.coe-hero-content { position: relative; z-index: 2; max-width: 800px; }
.coe-hero-content h1 { color: var(--coe-white); font-size: 3.5rem; line-height: 1.2; }
.coe-hero-content p { color: rgba(255, 255, 255, 0.9); font-size: 1.3rem; margin-bottom: 40px; }

/* Secções Comuns */
.coe-section { padding: 80px 0; }
.coe-subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto 50px; }

/* Sobre a Clínica */
.coe-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.coe-highlight-box {
  background: var(--coe-white);
  border-left: 5px solid var(--coe-primary);
  padding: 15px 20px;
  margin-top: 30px;
  font-size: 1.1rem;
  color: var(--coe-primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.coe-about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  aspect-ratio: 4/3; 
  object-fit: cover;
}

/* Tecnologias (Cards Horizontais Desktop / Vertical Mobile) */
.coe-tech-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px; 
}
.coe-tech-card-horizontal {
  display: flex;
  align-items: center;
  background: var(--coe-white);
  border-radius: 24px; 
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06); 
  border: 1px solid rgba(0,0,0,0.03); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coe-tech-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
}
.coe-tech-card-horizontal.reverse {
  flex-direction: row-reverse;
}
.coe-tech-img {
  width: 50%;
  position: relative;
}
.coe-tech-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.coe-tech-content {
  width: 50%;
  padding: 50px;
}
.coe-tech-content h3 { font-size: 1.6rem; margin-bottom: 15px; }

/* Equipa */
.coe-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.coe-team-member { background-color: var(--coe-white); border-radius: 20px; padding: 30px 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.coe-team-member img {
  width: 160px;
  height: 160px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 4px solid var(--coe-primary);
}

/* Depoimentos */
.coe-testim-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.coe-testim-card { background: var(--coe-white); padding: 30px; border-radius: 15px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.coe-testim-card .stars { color: #f5b301; font-size: 1.5rem; margin-bottom: 15px; }

/* FAQ */
.coe-faq-wrapper { max-width: 800px; margin: 0 auto; }
.coe-faq-item { background: var(--coe-white); margin-bottom: 15px; border-radius: 10px; box-shadow: 0 3px 10px rgba(0,0,0,0.04); overflow: hidden; }
.coe-faq-item summary { padding: 20px; font-weight: 600; color: var(--coe-primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.coe-faq-item summary::-webkit-details-marker { display: none; }
.coe-faq-item summary::after { content: '+'; font-size: 1.5rem; }
.coe-faq-item[open] summary::after { content: '-'; }
.coe-faq-item p { padding: 0 20px 20px; margin: 0; color: #555; border-top: 1px solid #eee; padding-top: 15px; }

/* Footer */
.coe-footer { background-color: var(--coe-primary); color: var(--coe-white); padding: 70px 0 20px; }
.coe-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-bottom: 40px; }
.coe-footer-col h3 { color: var(--coe-white); font-size: 1.3rem; margin-bottom: 25px; }
.coe-footer-logo { width: 100%; max-width: 180px; height: auto; margin-bottom: 20px; aspect-ratio: 16/9; object-fit: contain; }
.coe-footer p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.coe-contact-list { list-style: none; padding: 0; margin: 0; }
.coe-contact-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; color: rgba(255,255,255,0.8); }
.coe-contact-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; }
.coe-social-links { display: flex; flex-direction: column; gap: 15px; }
.coe-social-links a { display: inline-flex; align-items: center; gap: 10px; color: var(--coe-white); text-decoration: none; font-weight: 600; }
.coe-social-links a svg { width: 20px; height: 20px; }
.coe-footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.coe-footer-bottom p { margin: 0; font-size: 0.85rem; }

/* Botão Flutuante WhatsApp */
.coe-floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--coe-whatsapp);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease;
}
.coe-floating-whatsapp:hover { transform: scale(1.05); color: white; }
.coe-floating-whatsapp svg { width: 24px; height: 24px; }

/* RESPONSIVIDADE (MOBILE & TABLET) */
@media (max-width: 992px) {
  /* Menu */
  .coe-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--coe-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  .coe-nav.active { right: 0; }
  .coe-nav-list { flex-direction: column; gap: 30px; text-align: center; }
  .coe-nav-list a { font-size: 1.2rem; }
  .coe-menu-toggle { display: flex; }
  .coe-menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .coe-menu-toggle.active span:nth-child(2) { opacity: 0; }
  .coe-menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* Header e Botão Topo */
  .coe-hide-mobile { display: none; }
  .coe-btn-header { padding: 10px; border-radius: 50%; }
  .coe-btn-header svg { margin: 0; }
  .coe-hero { padding-top: 100px; }

  /* Cards de Tratamentos */
  .coe-tech-card-horizontal, .coe-tech-card-horizontal.reverse { flex-direction: column; }
  .coe-tech-img, .coe-tech-content { width: 100%; }
  .coe-tech-img img { aspect-ratio: 16/9; }
  .coe-tech-content { padding: 30px 20px; }

  /* Hero e Grid Geral */
  .coe-hero-content h1 { font-size: 2.2rem; }
  .coe-about-grid { grid-template-columns: 1fr; }
  
  /* WhatsApp Flutuante no Mobile (Icon apenas) */
  .coe-floating-whatsapp {
    padding: 15px;
    bottom: 20px;
    right: 20px;
    font-size: 0; /* Esconde o texto para não atrapalhar no mobile */
    gap: 0;
  }
  .coe-floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-ba34e1e */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Variáveis de Cores */
:root {
  --coe-primary: #564733; 
  --coe-primary-light: #7a664c;
  --coe-bg: #DFDCD5; 
  --coe-bg-light: #F4F2EE; /* Para alternar secções */
  --coe-white: #ffffff;
  --coe-text-dark: #2C241B;
  --coe-whatsapp: #25D366; 
}

/* Base */
.coe-landing-wrapper {
  font-family: 'Poppins', sans-serif;
  background-color: var(--coe-bg);
  color: var(--coe-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
.coe-landing-wrapper img { max-width: 100%; height: auto; display: block; }
.coe-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.coe-bg-light { background-color: var(--coe-bg-light); }

/* Tipografia Geral */
.coe-landing-wrapper h1, .coe-landing-wrapper h2, .coe-landing-wrapper h3, .coe-landing-wrapper h4 {
  color: var(--coe-primary);
  font-weight: 700;
  margin-bottom: 20px;
}
.coe-landing-wrapper p { font-size: 1.05rem; font-weight: 300; margin-bottom: 20px; }

/* Botões com Ícones perfeitamente alinhados */
.coe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Espaço entre ícone e texto */
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}
.coe-btn svg { width: 20px; height: 20px; fill: currentColor; }
.coe-btn-large { padding: 18px 40px; font-size: 1.1rem; }

.coe-btn-whatsapp {
  background-color: var(--coe-whatsapp);
  color: var(--coe-white);
}
.coe-btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-2px);
  color: white;
}

/* Header Fixo */
.coe-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--coe-primary);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 15px 0;
}
.coe-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coe-logo-header { max-width: 130px; }
.coe-btn-header {
  background: var(--coe-white);
  color: var(--coe-primary);
  padding: 10px 25px;
}
.coe-btn-header:hover {
  background: var(--coe-bg);
  color: var(--coe-primary);
}

/* Hero Section (Fundo Ecrã Inteiro) */
.coe-hero {
  min-height: 100vh;
  background: url('http://www.coepiracaia.com.br/wp-content/uploads/2026/06/Equipe-1-2.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px; /* Compensar header fixo */
}
.coe-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 36, 27, 0.75); /* Camada escura para leitura */
  z-index: 1;
}
.coe-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.coe-hero-content h1 {
  color: var(--coe-white);
  font-size: 3.5rem;
  line-height: 1.2;
}
.coe-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 40px;
}

/* Secções Comuns */
.coe-section { padding: 80px 0; }
.coe-subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto 50px; }

/* Sobre a Clínica */
.coe-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.coe-highlight-box {
  background: var(--coe-white);
  border-left: 5px solid var(--coe-primary);
  padding: 15px 20px;
  margin-top: 30px;
  font-size: 1.1rem;
  color: var(--coe-primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.coe-about-image img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover; /* Garante que não desencaixa */
}

/* Tecnologias (Grelha Resolvida p/ Imagens iguais) */
.coe-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.coe-tech-card {
  background: var(--coe-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.coe-tech-card img {
  width: 100%;
  height: 220px; /* Altura fixa rigorosa */
  object-fit: cover; /* O segredo para alinhar todas as imagens */
}
.coe-tech-content {
  padding: 25px;
  flex-grow: 1;
}
.coe-tech-content h3 { font-size: 1.3rem; margin-bottom: 10px; }
.coe-tech-content p { font-size: 0.95rem; margin-bottom: 0; }

/* Equipa (Especialidades) */
.coe-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.coe-team-member {
  background-color: var(--coe-white);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.coe-team-member img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 4px solid var(--coe-primary);
}
.coe-team-member h4 { font-size: 1.2rem; margin-bottom: 5px; }
.coe-team-member p { font-size: 0.9rem; color: #666; margin-bottom: 0; }

/* Depoimentos */
.coe-testim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.coe-testim-card {
  background: var(--coe-white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.coe-testim-card .stars { color: #f5b301; font-size: 1.5rem; margin-bottom: 15px; }
.coe-testim-card p { font-style: italic; font-size: 1rem; color: #444; }
.coe-testim-card h5 { color: var(--coe-primary); font-weight: 700; margin-top: 15px; }

/* FAQ - Sanfona em HTML nativo */
.coe-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.coe-faq-item {
  background: var(--coe-white);
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  overflow: hidden;
}
.coe-faq-item summary {
  padding: 20px;
  font-weight: 600;
  color: var(--coe-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.coe-faq-item summary::-webkit-details-marker { display: none; }
.coe-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--coe-primary);
}
.coe-faq-item[open] summary::after { content: '-'; }
.coe-faq-item p {
  padding: 0 20px 20px;
  margin: 0;
  color: #555;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* Footer Melhorado */
.coe-footer {
  background-color: var(--coe-primary);
  color: var(--coe-white);
  padding: 70px 0 20px;
}
.coe-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.coe-footer-col h3 { color: var(--coe-white); font-size: 1.3rem; margin-bottom: 25px; }
.coe-footer-logo { max-width: 180px; margin-bottom: 20px; }
.coe-footer p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.coe-contact-list { list-style: none; padding: 0; margin: 0; }
.coe-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.coe-contact-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; }

.coe-social-links { display: flex; flex-direction: column; gap: 15px; }
.coe-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coe-white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.coe-social-links a svg { width: 20px; height: 20px; }
.coe-social-links a:hover { color: var(--coe-bg); }

.coe-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.coe-footer-bottom p { margin: 0; font-size: 0.85rem; }

/* Responsivo (Mobile) */
@media (max-width: 768px) {
  .coe-hero-content h1 { font-size: 2.2rem; }
  .coe-about-grid { grid-template-columns: 1fr; }
  .coe-header-container { flex-direction: column; gap: 15px; }
  .coe-hero { padding-top: 120px; } /* Ajuste de Header Mobile */
}/* End custom CSS */