/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #373737;
    overflow-x: hidden;
  }
  
  /* Variáveis CSS - Tema Escuro */
  :root {
    --primary: #b78933;
    --primary-dark: #8b6b1f;
    --secondary: #b78933;
    --white: #ffffff;
    --black: #373737;
    --dark-gray: #4a4a4a;
    --medium-gray: #5a5a5a;
    --light-gray: #6a6a6a;
    --lighter-gray: #7a7a7a;
    --text-light: #e5e7eb;
    --text-muted: #d1d5db;
    --gray-50: #4a4a4a;
    --gray-100: #5a5a5a;
    --gray-200: #6a6a6a;
    --gray-300: #7a7a7a;
    --gray-600: #9ca3af;
    --gray-700: #d1d5db;
    --green: #22c55e;
    --green-dark: #16a34a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --radius: 0.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header */
  .header {
    background: var(--black);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    text-decoration: none;
    color: inherit;
  }
  
  .logo-image {
    width: 16rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-image img {
    width: 16rem;
    height: 100%;
    object-fit: contain;
  }
  
  .logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
  }
  
  .logo-text p {
    font-size: 0.75rem;
    color: var(--gray-600);
  }
  
  .nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #b78933;
  }
  
  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #b78933;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }
  
  .mobile-menu-content {
    background: var(--dark-gray);
    padding: 2rem;
    margin-top: 4rem;
    border-radius: 0 0 1rem 1rem;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
  }
  
  /* Botões */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background: var(--primary);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
  }
  
  .btn-white {
    background: var(--white);
    color: var(--primary);
  }
  
  .btn-white:hover {
    background: #b78933;
    color: var(--black);
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
  
  /* Hero Section */
  .hero {
    padding: 5rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .bg-animated {
    background: linear-gradient(-45deg, #606060, #707070, #808080, #909090, #a0a0a0, #b0b0b0, #c0c0c0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .badge {
    display: inline-block;
    background: linear-gradient(135deg, #b78933, #8b6b1f);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .badge-white {
    background: var(--white);
    color: var(--primary);
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #b78933 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-images {
    position: relative;
  }
  
  .hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;;
  }
  
  .hero-gallery-col-offset {
    margin-top: 3rem;
  }
  
  .hero-gallery .card {
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.2), rgba(139, 69, 19, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 133, 63, 0.3);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  
  .hero-gallery img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
  }
  
  /* Sections */
  .section {
    padding: 5rem 0;
  }
  
  .bg-gray {
    background: var(--dark-gray);
  }
  
  .bg-primary {
    background: linear-gradient(135deg, #808080, #909090, #a0a0a0);
    color: var(--black);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
  }
  
  .bg-primary .section-title {
    color: var(--white);
  }
  
  .section-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 42rem;
    margin: 0 auto;
  }
  
  /* Benefits Grid */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .benefit-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
  }
  
  .benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #b78933, #8b6b1f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
  }
  
  .benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
  }
  
  .benefit-card p {
    color: var(--text-muted);
  }
  
  /* Testimonials */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .testimonial-card {
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
  }
  
  .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  
  .star-filled {
    color: var(--primary);
    fill: var(--primary);
  }
  
  .testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #b78933, #8b6b1f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
  }
  
  .author-name {
    font-weight: 600;
    color: var(--text-light);
  }
  
  .author-age {
    font-size: 0.875rem;
    color: var(--text-muted);
  }
  
  /* Curso CTA */
  .curso-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .curso-description {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
  }
  
  .curso-features {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .curso-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
  }
  
  .curso-features li i {
    color: #b78933;
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .curso-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
  }
  
  /* Location */
  .location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  
  .location-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
  }
  
  .contact-label {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
  }
  
  .contact-value {
    color: var(--text-muted);
  }
  
  .location-map {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
    width: 100%;
  }
  
  .location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
  }
  
  .map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 1rem;
    text-align: center;
  }
  
  .map-overlay .map-address {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
  }
  
  .btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  /* Footer */
  .footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--medium-gray);
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-logo-image {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  .footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
  }
  
  .footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
  }
  
  /* WhatsApp Float */
  .whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
  }
  
  .whatsapp-btn {
    width: 4rem;
    height: 4rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .whatsapp-btn:hover {
    background: var(--green-dark);
    transform: scale(1.1);
    color: var(--white);
  }
  
  /* Animações */
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes pulseGlow {
    0%,
    100% {
      box-shadow: 0 0 20px rgba(168, 80, 16, 0.4);
    }
    50% {
      box-shadow: 0 0 40px rgba(168, 80, 16, 0.8);
    }
  }
  
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
  
  .animate-pulse-slow {
    animation: pulseGlow 3s ease-in-out infinite;
  }
  
  /* Efeitos de Hover */
  .hover-lift {
    transition: var(--transition);
  }
  
  .hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
  }
  
  .hover-glow {
    transition: var(--transition);
  }
  
  .hover-glow:hover {
    box-shadow: 0 0 30px rgba(168, 80, 16, 0.4);
    transform: translateY(-2px);
  }
  
  .hover-tilt {
    transition: var(--transition);
  }
  
  .hover-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
  }
  
  .hover-shine {
    position: relative;
    overflow: hidden;
  }
  
  .hover-shine::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;
  }
  
  .hover-shine:hover::before {
    left: 100%;
  }
  
  .card-hover {
    transition: var(--transition);
  }
  
  .card-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
  }
  
  /* Glass Effect */
  .glass {
    background: linear-gradient(135deg, rgba(205, 133, 63, 0.15), rgba(139, 69, 19, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 133, 63, 0.2);
  }
  
  /* Scroll Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  
    .curso-cta {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .location-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .hero-buttons {
      justify-content: center;
    }
  
    .btn {
      width: 100%;
      justify-content: center;
    }
  
    .container {
      padding: 0 1rem;
    }
    
    .hero-gallery img {
      height: 14rem;
    }
    
    .location-map {
      aspect-ratio: 1;
      max-width: 400px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 3rem 0;
    }
  
    .section {
      padding: 3rem 0;
    }
  
    .hero-title {
      font-size: 1.75rem;
    }
  
    .section-title {
      font-size: 1.75rem;
    }
  
    .hero-gallery {
      grid-template-columns: 1fr;
    }
  
    .hero-gallery-col-offset {
      margin-top: 0;
    }
    
    .hero-gallery img {
      height: 12rem;
    }
    
    .location-map {
      aspect-ratio: 1;
      max-width: 300px;
      margin: 0 auto;
    }
  }
  
  /* Inputs e Formulários - Tema Escuro */
  input, textarea, select {
    background-color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    color: var(--text-light);
    transition: var(--transition);
  }
  
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #b78933;
    box-shadow: 0 0 0 3px rgba(183, 137, 51, 0.1);
  }
  
  input::placeholder, textarea::placeholder {
    color: var(--text-muted);
  }
  
  /* Utilities */
  .text-white {
    color: var(--white);
  }
  
  .text-center {
    text-align: center;
  }
  
  .hidden {
    display: none;
  }
  
  .block {
    display: block;
  }
  