@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');
@import url('career.css');

:root {
    /* Cor primária */
    --color-primary-1: #916069; /* Rosa queimado/chic */
    --color-primary-2: #A76D79; /* Tom mais claro para hover */
    --color-primary-3: #C38C94; /* Fundo leve */
    --color-primary-4: #6F4B52; /* Escuro */
    --color-primary-5: #8B4C58; /* Para botões principais */
    --color-primary-6: #A05866; /* Hover dos botões */

    /* Neutros sofisticados */
    --color-neutral-0: #FDF9F8; /* Quase branco */
    --color-neutral-1: #1E1E1E; /* Texto principal */
    --color-neutral-2: #5A5A5A; /* Texto secundário */
    --color-neutral-3: #888888; /* Texto desativado ou dicas */
    --color-neutral-translucent: rgba(44, 44, 44, 0.67); /* cor usada no nav links */


    /* Acentos sutis */
    --color-accent-1: #D9B6A3; /* Bege pêssego sofisticado */
    --color-accent-2: #735F5B; /* Marrom suave */

    /* Sombras */
    --color-shadow: rgba(0, 0, 0, 0.06);
    --color-shadow-strong: rgba(0, 0, 0, 0.14);
    --color-primary-shadow-light: rgba(145, 96, 105, 0.25);
    --color-primary-shadow-strong: rgba(145, 96, 105, 0.4);
}

* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
    color: var(--color-neutral-0);
}

section {
    padding: 32px 10%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 10px;
    max-width: 300px;   /* Limita a largura máxima */
    padding: 12px 20px;
    font-weight: 600;
    color: var(--color-neutral-0);
    box-shadow: 0px 4px 12px var(--color-shadow);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;

}

.btn-default:hover {
    background-color: var(--color-primary-6);
    transform: translateY(-2px);
}

.social-media-buttons {
    display: flex;
    gap: 16px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent-2);
    color: var(--color-neutral-0);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-media-buttons a:hover {
    background-color: var(--color-accent-1);
    color: var(--color-neutral-1);
}


@media (min-width: 2000px) {
  .team-wrapper {
    justify-content: space-between;
    gap: 80px;
    max-width: 1300px;
  }

  .team-photo {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
  }

  .team-photo img {
    max-width: 100%;
    height: auto;
  }

  .team-info {
    flex: 1;
    padding-left: 40px;
  }
}
