/*
Theme Name: Changes Idiomas
Theme URI: https://changesidiomas.com.br
Description: Landing page moderna para Changes Idiomas
Version: 1.0
Author: Changes Idiomas
Author URI: https://changesidiomas.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
:root {
  /* Cores Primárias - ATUALIZADAS */
  --color-primary-blue: #152E4B;
  --color-primary-red: #8C2530;
  --color-primary-accent: #8C2530; /* Cor para botões de ação */
  
  /* Cores Secundárias */
  --color-secondary-light: #f8fafc;
  --color-secondary-white: #ffffff;
  --color-secondary-gray: #4a5568;
  --color-secondary-light-gray: #e2e8f0;
  
  /* Gradientes - ATUALIZADOS */
  --gradient-primary: linear-gradient(90deg, var(--color-primary-red), #C33C51, var(--color-primary-blue));
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary-white) 100%);
  --gradient-hero: linear-gradient(135deg, var(--color-primary-blue) 0%, #1C3A5F 50%, var(--color-primary-blue) 100%);
  --gradient-highlight: linear-gradient(135deg, var(--color-primary-blue), #1C3A5F);
  
  /* Cores de Texto */
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.8);
  
  /* Cores de Estado - ATUALIZADAS */
  --color-hover: #6a1c25; /* Versão mais escura do #8C2530 */
  --color-active: #A52A36;
  --color-focus: rgba(140, 37, 48, 0.1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #EFEFEF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary-red);
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo .brand-red {
  color: var(--color-primary-red);
}

.logo .brand-blue {
  color: var(--color-primary-blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-primary-blue);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--color-primary-red);
}

.nav-btn {
  background-color: var(--color-primary-red);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s transform 0.3s;
}

.nav-btn:hover {
  background-color: var(--color-hover);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-primary-blue);
  transition: 0.3s;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu li {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }

  .nav-menu a {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }
}
header:first-of-type {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #EFEFEF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

article header.entry-header {
    position: static !important;
    margin-top: 3rem !important; /* Espaço extra para o menu */
    z-index: 1 !important;
}
/* Main Content */
body {
  padding-top: 70px;
}
body > header {
    position: fixed;
    top: 0;
    z-index: 1000;
}
article .entry-header {
    margin-top: 4rem;
    position: static;
}
.site-main {
  padding-top: 1rem;
}

/* Animações para o modal */
.course-modal {
    animation: fadeIn 0.3s ease;
}

.modal-content {
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilização do conteúdo dentro do modal */
.modal-body h1,
.modal-body h2,
.modal-body h3,
.modal-body h4 {
    color: var(--color-primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-body ul,
.modal-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-body strong {
    color: var(--color-primary-red);
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem !important;
    }
    
    .modal-body {
        padding: 1.5rem !important;
        max-height: 50vh !important;
    }
    
    #modalTitle {
        font-size: 1.5rem !important;
    }
}

/* Botão do modal */
.modal-close:hover {
    color: var(--color-primary-red) !important;
}

/* Hero Section */
.hero {
  position: relative;
  color: var(--text-light);
  padding: 120px 1rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slideshow Container */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

/* Overlay e Conteúdo */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(21, 46, 75, 0.85) 0%,
    rgba(140, 37, 48, 0.7) 50%,
    rgba(21, 46, 75, 0.85) 100%
  );
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p.subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Botões Melhorados - ATUALIZADOS com #8C2530 */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-red), #A52A36);
  color: var(--text-light);
  border: 2px solid var(--color-primary-red);
  box-shadow: 0 8px 25px rgba(140, 37, 48, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A52A36, var(--color-primary-red));
  border-color: #A52A36;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(140, 37, 48, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--color-primary-blue);
  border-color: var(--text-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-primary-1 {
  background-color: var(--color-primary-red);
  color: var(--text-light);
  border: 2px solid var(--color-primary-red);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-1:hover {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  transform: translateY(-2px);
}

/* Fallback quando não há imagens */
.hero.no-images {
  background: var(--gradient-hero);
}

.hero.no-images::before {
  background: linear-gradient(
    135deg,
    rgba(21, 46, 75, 0.9) 0%,
    rgba(28, 58, 95, 0.8) 50%,
    rgba(21, 46, 75, 0.9) 100%
  );
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Indicadores do Slideshow */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 4;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-indicator.active {
  background: var(--color-primary-red);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 1rem;
    min-height: 80vh;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
  }
  
  .hero p.subtitle {
    font-size: 1.125rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
}

/* About Section - ATUALIZADO */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-red), #C33C51, var(--color-primary-blue));
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.about-container h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: var(--color-primary-blue);
  font-weight: 800;
  position: relative;
}

.about-container h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-red), #C33C51);
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(140, 37, 48, 0.1), rgba(21, 46, 75, 0.1));
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a5568;
}

.about-text p {
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.about-text p::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary-red);
  font-weight: bold;
  font-size: 1.5rem;
}

.about-highlights {
  background: linear-gradient(135deg, var(--color-primary-blue), #1C3A5F);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(21, 46, 75, 0.2);
}

.about-highlights h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.highlight-text {
  flex: 1;
}

.highlight-text strong {
  color: var(--color-primary-red);
  font-weight: 700;
}

/* Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary-red);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--color-primary-blue);
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 968px) {
  .about-content {
    gap: 50px;
  }
  
  .about-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .about-container h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    transform: none;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .about-text p {
    padding-left: 1.5rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-container h2 {
    font-size: 2rem;
  }
  
  .about-text {
    font-size: 1rem;
  }
  
  .about-highlights {
    padding: 1.5rem;
  }
}

/* Courses Section - ATUALIZADO */
.courses {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
}

.courses-container {
  max-width: 75rem;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary-blue);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.25rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.course-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.course-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.course-card svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary-red);
  margin-bottom: 1rem;
}

.course-card h3 {
  font-size: 1.5rem;
  color: var(--color-primary-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.course-card p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.course-read-more button {
  background: none;
  border: none;
  color: var(--color-primary-red) !important;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: rgba(140, 37, 48, 0.1) !important;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.course-read-more button:hover {
  background: rgba(140, 37, 48, 0.2) !important;
}

.course-link {
  color: var(--color-primary-red);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.course-link:hover {
  gap: 1rem;
}

/* Clients Section - ATUALIZADO */
.clients {
  background-color: var(--color-primary-red);
  color: white;
  padding: 4rem 1rem;
}

.clients-container {
  max-width: 75rem;
  margin: 0 auto;
}

.clients h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.client-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  text-align: center;
  font-weight: 700;
  color: var(--color-primary-blue);
  transition: all 0.3s;
}

.client-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.client-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-link:hover {
  background-color: #f9f9f9;
}

.clients-footer {
  text-align: center;
  padding: 2rem;
  font-size: 1.125rem;
}

/* Contact Form 7 Styles - ATUALIZADO */
.contact-form {
    margin-top: 1.5rem;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.wpcf7-form .wpcf7-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wpcf7-form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-primary-red);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(140, 37, 48, 0.2);
}

.wpcf7-form .wpcf7-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.wpcf7-form .wpcf7-textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7-form .wpcf7-submit {
    background: linear-gradient(135deg, var(--color-primary-red), #A52A36);
    color: var(--text-light);
    border: 2px solid var(--color-primary-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    margin-top: 0.5rem;
}

.wpcf7-form .wpcf7-submit:hover {
    background: linear-gradient(135deg, #A52A36, var(--color-primary-red));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(140, 37, 48, 0.4);
}

/* Estados do formulário */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.wpcf7-form .wpcf7-not-valid {
    border-color: #ff6b6b;
}

.wpcf7-response-output {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0 0 !important;
    text-align: center;
    font-weight: 600;
}

.wpcf7-mail-sent-ok {
    border: 1px solid var(--color-primary-red);
    background: rgba(140, 37, 48, 0.1);
    color: var(--color-primary-red);
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    border: 1px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.wpcf7 .ajax-loader {
    display: block;
    margin: 1rem auto;
}

/* Loading state */
.wpcf7-form.submitting .wpcf7-submit {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .wpcf7-form .wpcf7-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .wpcf7-form .wpcf7-form-control {
        padding: 0.675rem 0.875rem;
    }
}

/* Contact Section - ATUALIZADO */
.contact {
  background-color: white;
  padding: 4rem 1rem;
}

.contact-container {
  max-width: 56rem;
  margin: 0 auto;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary-blue);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-icon.green {
  background-color: #25D366; /* Verde do WhatsApp */
}

.contact-icon.red {
  background-color: var(--color-primary-red);
}

.contact-icon.blue {
  background-color: var(--color-primary-blue);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info h3 {
  font-weight: 700;
  color: var(--color-primary-blue);
  margin-bottom: 0.5rem;
}

.contact-info a,
.contact-info p {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--color-primary-red);
}

.contact-card {
  background: linear-gradient(135deg, var(--color-primary-blue) 0%, #1C3A5F 100%);
  border-radius: 0.75rem;
  padding: 2rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-card .btn {
  width: 100%;
}

/* Footer - ATUALIZADO */
footer {
  background-color: var(--color-primary-blue);
  color: white;
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary-red);
}

.footer-logo .brand-red {
  color: var(--color-primary-red);
}

.footer-logo .brand-blue {
  color: white;
}

.footer-right {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    width: 100%;
  }
}
/* Botão do Instagram */
.instagram-btn {
  position: fixed;
  bottom: 90px; /* Colocado acima do WhatsApp */
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.instagram-btn svg {
  width: 28px;
  height: 28px;
}

.instagram-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .instagram-btn {
    bottom: 85px;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-btn {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  
  .instagram-btn svg,
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #EFEFEF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Header do artigo (título da página) */
.entry-header {
    z-index: 1 !important;
    position: relative;
}
.entry-title {
  font-size: 2.5rem !important;
  color: #003366 !important;
  margin-bottom: 2rem !important;
  padding-top: 1rem;
}
/* Ajuste para conteúdo das páginas */
.entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-top: 1rem;
}

/* Se o header for mais alto, ajuste este valor */
@media (max-width: 768px) {
  body {
    padding-top: 60px; /* Menos padding no mobile se o header for menor */
  }
  
  .entry-title {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }
}
section {
  scroll-margin-top: 70px;
}

/* Estilos para destaque de card de curso */
.course-card.highlighted {
    animation: pulseHighlight 2s ease-in-out;
    box-shadow: 0 0 20px rgba(140, 37, 48, 0.5);
    transform: translateY(-5px);
    transition: all 0.3s ease;
    border: 2px solid rgba(140, 37, 48, 0.8);
    position: relative;
    z-index: 5;
}

.course-card.highlighted::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, rgba(140, 37, 48, 0.3), transparent);
    z-index: -1;
}

@keyframes pulseHighlight {
    0%, 100% {
        box-shadow: 0 0 10px rgba(140, 37, 48, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(140, 37, 48, 0.7);
    }
}

/* Para seções destacadas */
.section-highlighted {
    animation: sectionPulse 2s ease;
}

@keyframes sectionPulse {
    0%, 100% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(140, 37, 48, 0.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .courses-grid,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}