/* ==========================================
   VARIÁVEIS E RESET
   ========================================== */

:root {
    --primary: #5e8c81;
    --secondary: #416961;
    --accent: #f7f7f7;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
    --success: #27ae60;
    
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   NAVBAR
   ========================================== */

.navbar {
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-md) 0;
}

.navbar-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.navbar-logo:hover {
    color: var(--secondary);
}

.navbar-logo span strong {
    font-weight: 800;
}

.navbar-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.navbar-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.navbar-link:hover {
    color: var(--primary);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition);
}

.navbar-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.navbar-menu {
  display: flex;
  gap: 20px;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #5e8c81;
}


.logo-wrap {
  padding: 0 28px 28px 28px;
  width:100%;  /* deixa 18px de cada lado */
  max-width: 650px;          /* controla tamanho máximo */
}

.logo-container {

    padding: 0 28px 28px 28px;  /* 18px à esquerda, à direita e embaixo */
    display: flex;
    justify-content: center;    /* centraliza o logo */
}

.logo-img {
    box-shadow: rgba(0, 0, 0, 0.7) 0px 2px 8px;   
}

.logo-wrap:hover .circle-text {
  fill: #5e8c81; /* muda a cor do texto */
}

.circle-text {
  fill: #5e8c81;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s ease forwards;
  margin: 12px;
}
/* keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible; /* IMPORTANTE: adicione esta linha */
}

.rotating-text {
    transform-origin: 250px 250px; /* Ajuste o centro */
    animation: rotate 12s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.gradient-text {
    background: linear-gradient(135deg, #ffd89b, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
}

.btn {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 14px;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    box-shadow: var(--shadow-xl);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* ==========================================
   FEATURES
   ========================================== */

.features {
    padding: var(--spacing-2xl) 0;
    background: var(--light);
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto var(--spacing-md);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ==========================================
   GALLERY
   ========================================== */

.gallery {
    padding: var(--spacing-2xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    background: var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* ==========================================
   PROFESSIONALS
   ========================================== */

.professionals {
    padding: var(--spacing-2xl) 0;
}

.professionals.alt {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

.search-wrapper {
    margin-bottom: var(--spacing-2xl);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.search-input {
    padding: var(--spacing-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(94, 140, 129, 0.1);
}

.professionals-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

/* ==========================================
   PROFESSIONALS CONTAINER - CAROUSEL
   ========================================== */

.professionals-container {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-md) 0;
}

.professionals-container::-webkit-scrollbar {
    display: none;
}

.prof-card {
    flex: 0 0 320px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.prof-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.prof-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.prof-card-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: var(--transition);
}

.prof-card:hover .prof-card-image img {
    transform: scale(1.08);
}

.prof-card-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prof-card-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prof-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.prof-card-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.prof-info-item {
    background: linear-gradient(135deg, rgba(94, 140, 129, 0.08), rgba(65, 105, 97, 0.08));
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(94, 140, 129, 0.1);
}

.prof-info-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}

.prof-info-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.prof-card-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.prof-btn {
    flex: 1;
    padding: var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.prof-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.prof-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.prof-btn-secondary {
    background: var(--light);
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
}

.prof-btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ==========================================
   TIPS CAROUSEL - NOVO DESIGN
   ========================================== */

.tips-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.tips-section.alt {
    background: #f9f9f9;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-lg);
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-md) 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.tip-card {
    flex: 0 0 350px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tip-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.tip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tip-content {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    max-height: 200px;
}

.tip-content p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
}

.tip-footer {
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}


.no-results {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--text-light);
    font-size: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background: #f5f5f5;
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #5e8c81;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #666;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5e8c81;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    background: none;
    width: 40px;
    height: 40px;
    padding: 0;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.social-icon:hover {
    background: #4a756b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #666666;
    font-size: 0.9rem;
}


.main-center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Garante que o conteúdo comece do topo */
    align-items: center;
    width: 100%;
    height: 1150px; /* Mantém a altura fixa */
    overflow-y: auto; 
    overflow-x: hidden; /* Permite rolagem vertical se o conteúdo exceder a altura */
    scrollbar-width: none; /* Remove a barra de rolagem visível no Firefox */
    -ms-overflow-style: none; /* Remove a barra de rolagem no IE e Edge */
    backdrop-filter: blur(30px);
    padding: 20px 0; /* Ajusta o padding interno para centralizar */
    gap: 1rem; 
    /* Espaço entre os perfis */
}

.main-center::-webkit-scrollbar {
    display: none; /* Remove a barra de rolagem no Chrome e navegadores WebKit */
}

.profile-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    
}

.profile {
    padding: 1rem;
    position: relative;
    max-width: 30rem;
    width: 100%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 6px;
    height: 45rem;
    border-radius: 2.5rem;
    transition: all 0.2s ease-in-out;
}

.profile_wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
}

.names {
    display: flex;  

    

}

.names-sobre{
    display: flex;
    padding-bottom: 10px;
    margin-right: 10px;
}
.profile h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    font-size: 2rem;
    color: var(--profile-headline);
    gap: 0.5rem;
}

.profile p {
    font-size: 1.25rem;
    color: var(--profile-text);
    margin-bottom: 0.5rem;
}

.profile .background-img {
    position: absolute;
    z-index: 1;
    top: 0rem;
    left: 0rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 1.75rem;
}

.profile_content {
    position: relative;
    margin-top: auto;
    background: linear-gradient(to top, rgba(0, 0, 0, 1)  60%,
    rgba(0, 0, 0, -0.2) 100%);
    backdrop-filter: blur(1px);
    color: var(--profile-text);
    border-radius: 0 0 2rem 2rem;
    padding: 1rem;
    z-index: 2;
}

.profile_description {
    font-size: 1.1rem;
    line-height: 1.5rem;
    color: var(--profile-text);
    margin-bottom: 1rem;
}

.highlights {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 0.15rem;
}

.highlight_value {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    gap: 0.5rem;
    padding: 5px;
    border-radius: 1rem;
}

.highlight_name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--highligt-name-color);
}

.button-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.button-actions .primary {
    border: 1px solid #5e8c81;
    background: #5e8c81;
    color: white;
    flex: 3;
}

.button-actions button {
    min-height: 3.5rem;
    background: var(--white);
    color: var(--text);
    display: flex;
    border: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 600;
    border-radius: 1rem;
    cursor: pointer;
    transition:  background-color
    0.2s ease-in-out;
}

.button-actions .profile_bookmark {
    background: var(--bookmark-bg);
    border: 1px solid var(--bookmark-border);
    color: var(--btn-text);
    flex: 1;
    transition: all 0.2s ease-in-out;
}

.button-actions .profile_bookmark:hover {
    border: 1px solid var(--bookmark-svg);
}

.description{
    font-family:'Times New Roman', Times, serif;
}

.base-pf {
    display: flex;
    width: 100%;
    height: 300px; 
    justify-content:flex-start;
    align-items: center;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden; /* Permite a rolagem lateral */
    scroll-snap-type: x mandatory; /* Ativa o "scroll snap" no eixo horizontal */
    scrollbar-width: none; /* Remove barra de rolagem visível no Firefox */
    -ms-overflow-style: none; 


    
}

.base-pf-marg {
    display: flex;
    flex-wrap: nowrap; /* Garante que todos os itens fiquem em linha, sem quebra */
    justify-content: flex-start; /* Alinha os itens à esquerda */
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 15px;
    overflow-x: auto;
    overflow-y: hidden; /* Permite a rolagem lateral */
    scroll-snap-type: x mandatory; /* Ativa o "scroll snap" no eixo horizontal */
    scrollbar-width: none; /* Remove barra de rolagem visível no Firefox */
    -ms-overflow-style: none; 
    

   
}

.base-pf-marg::-webkit-scrollbar {
    display: none;
}





.base-pf h2 {
    font-family: Arial;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: white;
    font-size: 50px;
}

/* Estilo para o menu */
.border-p{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 160px;
    background-color: white;
    border-top: 3px solid #5e8c81;
   
}

.border-p p{
    font-size: 20px;
    font-weight: 200;
    font-family: Arial;
    color: #5e8c81;
}

.border-p h3 {
    font-size: 30px;
    font-weight: 200;
   font-family: Arial;
    color: #5e8c81;
}

.border-N{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 160px;
    background-color: white;
    border-top:3px solid #5e8c81;
  

}

.border-N p{
    font-size: 20px;
    font-weight: 200;
    font-family: Arial;
    color: #5e8c81;
}

.border-N h3 {
    font-size: 30px;
    font-weight: 200;
    font-family: Arial;
    color: #5e8c81;
}

/* Perfil adicional */
.perfil1 {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.img-perfil1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #333;
    margin-right: 10px;
}

.post-me{
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: nowrap; 
    width: 380px;
    height: 150px;
    border-radius: 15px;
    margin-left: 12px;
    margin-bottom: 15px;
    padding: 0;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 1.5);
}

.post-me-pro {
    display: flex;
    justify-content:center;
    width: 100%;
    height:100%;
}


.dica{
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    height: 100%;
}

.dica p{
    font-size: 15px;
    font-weight: 200;
    font-family: Arial;
    color: black;
    backdrop-filter:  blur(30px);
    padding: 5px;
    border-radius: 15px;
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    overflow-x: hidden;
    overflow-y: auto; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
}


.post-me h3 {
    font-size: 20px;
    font-weight: 200;
    font-family: Arial;
    color: #333;
    margin-bottom: 10px;

}


.post-me p {
    font-size: 15px;
    font-weight: 200;
    font-family: Arial;
    color: #333;
    backdrop-filter:  blur(30px);
    padding: 5px;
    border-radius: 15px;
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    overflow-x: hidden;
    overflow-y: auto; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
}


.section-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #416961;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #416961;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #416961;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(65, 105, 97, 0.3);
}

.section-more {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #416961;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #416961;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #416961;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(65, 105, 97, 0.3);
}

.btn-more i {
    transition: transform 0.3s ease;
}

.btn-more:hover i {
    transform: translateX(5px);
}





/* Banner de Cookies */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            border-top: 1px solid #e0e0e0;
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            display: none;
            animation: slideUp 0.4s ease-out;
        }

        .cookie-banner.show {
            display: block;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .cookie-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-icon {
            font-size: 40px;
            flex-shrink: 0;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-text p {
            color: #333;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .cookie-text a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 500;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-accept {
            background: #1a73e8;
            color: white;
        }

        .btn-accept:hover {
            background: #1557b0;
        }

        .btn-settings {
            background: white;
            color: #333;
            border: 1px solid #dadce0;
        }

        .btn-settings:hover {
            background: #f8f9fa;
        }

        .btn-reject {
            background: white;
            color: #5f6368;
            border: 1px solid #dadce0;
        }

        .btn-reject:hover {
            background: #f8f9fa;
        }

        /* Modal de Configurações */
        .cookie-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .cookie-modal.show {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 8px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .modal-header h2 {
            color: #333;
            font-size: 24px;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            line-height: 1;
        }

        .cookie-option {
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .cookie-option-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .cookie-option h3 {
            font-size: 16px;
            color: #333;
        }

        .cookie-option p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }

        .toggle {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.4s;
            border-radius: 24px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #1a73e8;
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        input:disabled + .slider {
            background-color: #e0e0e0;
            cursor: not-allowed;
        }

        .modal-footer {
            margin-top: 20px;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }

        @media (max-width: 768px) {
            .cookie-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-buttons {
                width: 100%;
            }

            .btn {
                flex: 1;
            }
        }


/* ==========================================
   RESPONSIVIDADE
   ========================================== */

@media (max-width: 768px) {

    .logo-container{
        order: 1;
    }

    .hero-text{
        order: 2;
    }

    .navbar-wrapper {
        
        gap: var(--spacing-md);
    }

    .navbar-menu {
        order: 3;
        width: 100%;
        gap: var(--spacing-md);
        
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-heading {
        font-size: 28px;
    }

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

    .search-form {
        grid-template-columns: 1fr;
    }

    .profile {
        max-width: 280px;
    }

    .tip-item {
        flex: 0 0 280px;
        
    }

    .footer-content {
        display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
    }


 

  .navbar-menu {
    display: none; /* Esconde apenas o menu de links */
  }

  .mobile-menu {
    display: block; /* Mostra o botão ☰ */
  }

  /* Quando o menu for aberto */
  .navbar-menu.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px;
    border-top: 1px solid #ddd;
  }


}

    @media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .navbar-wrapper {
        flex-direction: column;
    }

    .navbar-menu {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .navbar-btn {
        width: 100%;
        justify-content: center;
    }

    .hero {
        min-height: 500px;
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-visual {
        height: 250px;
    }

    .section-heading {
        font-size: 24px;
        margin-bottom: var(--spacing-lg);
    }

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

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

    .professionals-container {
        grid-template-columns: 1fr;
    }

    .prof-card {
        max-width: 100%;
    }

    .tip-card-new {
        flex: 0 0 100%;
    }

    .button-actions {
        flex-direction: column;
    }

    .search-form {
        padding: var(--spacing-md);
        grid-template-columns: 1fr;
    }

    .search-input {
        font-size: 16px;
    }

    .no-results {
        text-align: center;
        padding: var(--spacing-2xl);
        color: var(--text-light);
        font-size: 16px;
    }
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */

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

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}