
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');


* {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
    background: transparent;
    list-style: none;
  }
  
  
  :root {
    --azul-1: #028DD0;
    --azul-2: #04328E;
    --azul-3: #009dff;
    --vermelho: rgb(251, 4, 4);
    --botao-laranja: #f19a0e;
    --branca: #ffffff;
    --preta: #111111;
    --texto-title: #555555;
    --bg-branco-2: #edf2f7;
    --bg-branco-3: #f2f2f2;
    --bg-cinza: #f5f5f5;
    --bg-cinza-2: #d3d7d6;
    --bg-cinza-3: #888;
    --opacidade-1: rgba(0, 0, 0, 0.4);
    --opacidade-2: rgba(0, 0, 0, 0.5);
    --opacidade-3: rgba(0, 0, 0, 0.619);
    --linha-header: #e1e9ed28;
    --instagram: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    --whatsapp: #075e54;
    --facebook: #3b5998;
    --linkedin: #0e76a8;
  }
  
  :root {
    --shadow: 0 4px 4px 0 rgba(25, 67, 182, 0);
    --shadow-1: 0 1px 0 0 #028bd071;
    --shadow-2: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  
  :root {
    --button-padding: 8px 15px;
    --button-border-radius: 5px;
    --card-radius: 10px;
  }
  
  /*===============================================ANIMAÇÃO SCOLL========================================================*/
  .overlay {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  }
  
  .overlay.visible {
    opacity: 1;
    transform: translateY(0);
  }
/* Container com Flexbox */
.container-doc {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row; /* Desktop */
    margin-top: 50px;
    gap: 20px;
    padding: 0 20px;
}

.so-principal{

    font-size: 1.3rem !important;
    color: var(--azul-1);
    text-align: center;
    text-transform: uppercase;
    padding-top: 30px !important; 
    margin-bottom: 20px !important;
    font-weight: 500;
    width: 100%;
}

/* Botões */
.btn-download {
    text-decoration: none;
    padding: 15px 25px;
    background-color: white;
    border: 1px solid var(--azul-1);
    color: var(--azul-1);
    font-weight: 500;
    border-radius: 4px;
    transition: all 1.5s ease;
    text-align: center;
    min-width: 200px;
}

/* Hover */
.btn-download:hover {
    background-color: var(--azul-1);
    color: white;
}

/* 📱 RESPONSIVO – MOBILE */
@media (max-width: 768px) {
    .container-doc{
        flex-direction: column; /* empilha os botões */
        justify-content: center;
        align-items: stretch;
    }

    .btn-download {
        width: 100%; /* ocupa toda a largura */
    }
}
