 /*
  CBT Recursos Humanos - CSS
  Inspirado no layout da Solides
  Cores: branco, verde e preto
*/

:root {
  --verde: #2ecc71;
  --preto: #222;
  --cinza-claro: #f8f9fa;
  --cinza-escuro: #444;
  --fonte-principal: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fonte-principal);
}

body {
  font-family: var(--fonte-principal);
  color: var(--preto);
  background-color: #fff;
  line-height: 1.6;
}

 /* ===== HEADER ===== */
        .header {
            background-color: #ffffff;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            height: 85px; /* Altura aumentada para caber a logo maior */
            display: flex;
            align-items: center;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 2rem;
        }

        /* ===== LOGO (Esquerda) ===== */
        .logo {
            display: flex;
            align-items: center;
            height: 100%; /* Ocupa toda a altura do header */
        }

        .logo img {
            height: 75px; /* AUMENTEI SIGNIFICATIVAMENTE a altura da logo */
            width: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        /* ===== MENU (Centro) ===== */
        .nav {
            flex-grow: 1;
            display: flex;
            justify-content: center;
        }

        .nav ul {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-link {
            position: relative;
            color: var(--preto);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            text-decoration: none;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: var(--verde);
            transition: width 0.3s;
        }

        .nav-link:hover,
        .nav-link:focus,
        .nav-link.active {
            color: var(--verde);
        }

        .nav-link:hover::after,
        .nav-link:focus::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* ===== BOTÕES (Direita) ===== */
        .area-buttons {
            display: flex;
            gap: 0.8rem;
            margin-left: auto;
        }

        .area-btn {
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            background-color: var(--verde);
            color: white;
        }

        .area-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* ===== MENU MOBILE ===== */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--preto);
            cursor: pointer;
            margin-left: 1rem;
        }

        /* ===== RESPONSIVO ===== */
        @media (max-width: 1200px) {
            .nav ul {
                gap: 1rem;
            }
            .area-btn {
                padding: 0.5rem 1rem;
            }
        }

        @media (max-width: 992px) {
            .header-container {
                gap: 1rem;
                padding: 0 1rem;
            }
            .nav-link {
                font-size: 0.9rem;
            }
            .logo img {
                height: 70px; /* Logo mantém tamanho grande em tablets */
            }
        }

        @media (max-width: 768px) {
            .header {
                height: 80px; /* Altura um pouco menor no mobile */
            }
            
            .nav, .area-buttons {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
            .logo img {
                height: 65px; /* Logo ainda grande no mobile */
            }
            
            /* Mobile Menu */
            .mobile-menu {
                position: fixed;
                top: 0;
                right: 0;
                width: 280px;
                height: 100vh;
                background: white;
                padding: 5rem 1.5rem;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
                transform: translateX(100%);
                transition: transform 0.3s ease;
                z-index: 1001;
            }
            .mobile-menu.mobile-open {
                transform: translateX(0);
            }
            .mobile-menu .nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .mobile-menu .area-buttons {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                margin-top: 2rem;
            }
            .mobile-menu .area-btn {
                width: 100%;
                text-align: center;
            }
        }

        /* Conteúdo de exemplo */
        .content {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }




 /* Seção de Contatos estilo footer */
    .contact-footer {
      background: var(--cinza-claro);
      padding: 2rem 0;
      font-family: var(--fonte-principal);
    }

    .contact-footer .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }

    /* Coluna Esquerda */
    .footer-left {
      flex: 1.3;
    }

    .footer-card {
      background: white;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .contact-badge {
      display: inline-block;
      background: var(--verde);
      color: white;
      padding: 0.3rem 0.7rem;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .contact-title {
      font-size: 1.2rem;
      color: var(--preto);
      margin: 0 0 1rem;
    }

    .contact-info {
      display: grid;
      gap: 1rem;
    }

    .contact-item {
      display: flex;
      gap: 0.8rem;
    }

    .contact-icon {
      flex-shrink: 0;
      margin-top: 0.2rem;
    }

    .contact-text {
      font-size: 0.95rem;
      color: var(--cinza-escuro);
      margin: 0;
      line-height: 1.4;
    }

    .phone-icons {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      flex-shrink: 0;
      margin-top: 0.2rem;
    }

    .phone-numbers {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .phone-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .whatsapp-icon {
      color: #25D366;
    }

    .social-links {
      display: flex;
      gap: 0.8rem;
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid #eee;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #f5f5f5;
      transition: all 0.3s ease;
      color: var(--verde);
    }

    .social-link:hover {
      background: var(--verde);
      color: white;
    }

    .social-link svg {
      width: 20px;
      height: 20px;
    }

    /* Coluna Direita */
    .footer-right {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .logo-img {
      max-height: 380px;
      width: auto;
    }

    /* Responsivo - MOBILE FIRST APPROACH */
    @media (max-width: 768px) {
      .contact-footer {
        padding: 1.5rem 0;
      }

      .contact-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
      }

      .footer-left {
        flex: unset;
        width: 100%;
      }

      .footer-card {
        padding: 1.2rem;
      }

      .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
      }

      .phone-icons {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 0.5rem;
      }

      .phone-numbers {
        align-items: center;
      }

      .social-links {
        justify-content: center;
        margin-top: 1.2rem;
      }

      .social-link {
        width: 32px;
        height: 32px;
      }

      .social-link svg {
        width: 16px;
        height: 16px;
      }

      /* Ajustes específicos para a logo no mobile - BEM MENOR E SEM ESPAÇO */
      .footer-right {
        width: 100%;
        padding: 0; /* Remove todo o padding */
        margin: 0; /* Remove toda a margin */
      }

      .logo-img {
        max-height: 80px; /* Logo MUITO menor no mobile */
        width: auto;
        margin: 0 auto;
      }
    }

    /* Ajustes para telas muito pequenas */
    @media (max-width: 480px) {
      .contact-footer {
        padding: 1rem 0;
      }

      .footer-card {
        padding: 1rem;
      }

      .logo-img {
        max-height: 120px !important; /* Ainda menor em telas muito pequenas */
      }

      .social-links {
        gap: 0.5rem;
      }

      .social-link {
        width: 28px;
        height: 28px;
      }
    }



/* Footer */
.footer {
  background: var(--preto);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    border-top: 1px solid #eee;
    padding: 1rem 0;
  }

  .nav.active {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }
}








