body{
    margin: 0;
    padding-top: 5rem;
    height: 100vh;
    background-blend-mode: screen;
    background-color: #FFF9EF;
    font-family: 'Roboto', sans-serif;
}

.company {
    height: 4rem;
}
.company img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.firstheader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* keeps it on top of other content */
    background: #e4ded5; /* match your body background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem 1rem 1rem;
    align-items: center;
    height: 3rem;
}

.topbuttons {
    display: flex;
    gap: 1rem;
}

.topbuttons button {
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    color: black;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    border: none;
}

.main-buttons {
    display: flex;
    gap: 0.75rem;
}

.main-buttons button {
    background-color: transparent;
    transition: text-shadow 0.4s ease, color 0.4s ease;
}

.main-buttons button:hover {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.contact-button{
    display: flex;
}

.contact-button button {
    background-color: white; /*13a3df*/
    color: black;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.contact-button button:hover {
    background-color: white; /*115d8f*/
    color: black;
    
}

 /* --- Sections --- */
.hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0B2027, #1E2E35);
    color: #cfd7c7;
    border-radius: 8px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    font-family: 'Roboto', sans-serif;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.hero ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.hero li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* --- Contact Form --- */
.formcontainer{
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}
.forminput {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid white;
    padding: 1rem;
}

.forminput input:not([type="checkbox"]),
.forminput select,
.forminput textarea {
    min-width: 100%;
    font-size: 1rem;
    border-radius: 0.5rem;
    min-height: 3rem;
    box-sizing: border-box;
    padding: 0.5rem;
    font-family: 'Roboto', sans-serif;
    border: 0.5px solid black;
}
.forminput select {
    padding: 0.25rem;
}

.forminput textarea {
    resize: vertical;
    min-height: 5rem;
}
.forminput input::placeholder,
.forminput textarea::placeholder {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: black;
}

.subjectselect:invalid {
    color: black;
}

.subjectselect option {
    color: black;
}

.contactinfo {
    text-align: left;
}

.privacy-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    gap: 0.5rem;
}

.privacy-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
}


/* --- Website Footer --- */
.site-footer {
    background: linear-gradient(135deg, #0B2027, #1E2E35);
    color: #cfd7c7;
    padding: 4rem 3rem 0.25rem 3rem;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100%;
    gap: 2rem;
    margin-bottom: 2rem;
    /* margin: 0 auto 20px; */
}

.footer-content div {
    flex: 1 1 75px;
}

.footer-content h1 {
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.footer-links ul,
.footer-contact-info ul {
    list-style: none;
    padding: 0;
}

.footer-contact-info li ,
.footer-links li {
    padding-bottom: 0.25rem;
}

.footer-contact-info {
    max-height: fit-content;
}
.footer-links a,
.footer-contact-info a {
    color: #cfd7c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact-info a:hover {
    color: #f8a51b;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 0.25rem;
    opacity: 0.8;
}

.footer-about {
    max-width: 17rem;
}

.footer-links {
    max-width: 17em;
}

.footer-contact-info {
    max-width: 17rem;
}

.footer-find-us {
    display: flex;
    flex-direction: column; /* texto em cima, ícones em baixo */
    align-items: flex-start; /* ou center se quiser centralizar */
    max-width: 17rem;
}

.footer-icons {
    display: flex;
    flex-wrap: wrap; /* permite que os ícones se ajustem em várias linhas se necessário */
    gap: 1rem; /* espaço entre ícones */
    max-height: fit-content;
}

.footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 5px;
    background-color: #FFF9EF;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-icons a:hover {
    background-color: #13a3df;
    transform: scale(1.1);
}

.footer-icons img {
    width: 2rem;
    height: 2rem;
}

/* --- COOKIES --- */
:root{
  --cc-bg:#0B2027;
  --cc-text:#cfd7c7;
  --cc-accent:white;
  --cc-muted:#7b8b8f;
  --cc-card:#1E2E35;
  --cc-body:#FFF9EF;
}

.cc-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:1100;
  display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between;
  padding:14px 16px; background:var(--cc-bg); color:var(--cc-text);
  box-shadow:0 -8px 20px rgba(0,0,0,.15);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
}
.cc-banner .cc-text{max-width:800px; line-height:1.4}
.cc-banner a{color:var(--cc-accent); text-decoration:underline}
.cc-actions{display:flex; gap:8px}
.cc-btn{
  border:none; cursor:pointer; border-radius:999px; padding:.55rem .9rem; font-weight:600;
  transition:transform .15s ease, background-color .25s ease, color .25s ease;
}
.cc-accept{background:var(--cc-accent); color:black}
.cc-reject{background:#2a3a41; color:#fff}
.cc-preferences{background:transparent; color:#fff; outline:1px solid #3b4a51}
.cc-btn:hover{transform:translateY(-1px)}

/* Modal */
.cc-modal{
  position:fixed; inset:0; z-index:1200; display:none; align-items:center; justify-content:center;
  background:rgba(0,0,0,.45); padding:20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
}
.cc-modal[aria-hidden="false"]{display:flex}
.cc-modal__dialog{
  position:relative; width:min(720px, 100%); background:var(--cc-card); color:var(--cc-text);
  border-radius:14px; box-shadow:0 20px 60px rgba(0,0,0,.35); padding:20px 20px 16px;
}
.cc-modal h3{margin:0 0 10px}
.cc-group{display:flex; flex-direction:column; gap:12px; margin:12px 0 16px}
.cc-row{display:flex; justify-content:space-between; align-items:center; gap:16px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06); border-radius:10px; padding:12px}
.cc-modal__actions{display:flex; gap:10px; justify-content:flex-end}
.cc-close{
  position:absolute; top:8px; right:10px; border:none; background:transparent; color:#fff; font-size:1.5rem; cursor:pointer;
}

/* Switch */
.cc-switch{position:relative; display:inline-block; width:48px; height:26px}
.cc-switch input{opacity:0; width:0; height:0}
.cc-slider{
  position:absolute; inset:0; background:#44555b; border-radius:26px; transition:.2s;
}
.cc-slider:before{
  content:""; position:absolute; height:20px; width:20px; left:3px; top:3px; background:#fff; border-radius:50%; transition:.2s;
}
.cc-switch input:checked + .cc-slider{background:var(--cc-accent)}
.cc-switch input:checked + .cc-slider:before{transform:translateX(22px)}

/* Responsivo */
@media (max-width: 640px){
  .cc-actions{width:100%; justify-content:flex-end}
}

