/* Reset

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}






/*
 * Arquivo: style.css
 * Estilos para o Cartão de Visita Virtual
 */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;

    /* Aqui você pode adicionar um background-color ou background-image */
}

.container {
    max-width: 650px;
    margin: 0 auto;
    background-color: #DAE4E9;
    /* Adicione mais estilos aqui, como sombra ou borda */
}

.logo {
    width: 300px; /* Ajuste conforme o tamanho da sua logo */
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: #1D4261; /* Escolha a cor da sua identidade visual */
}

p {
    color: #1D4261;
}

.instagram-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #E1306C; /* Cor de destaque (Instagram) */
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 30px;
    transition: background-color 0.3s;
}

.instagram-button:hover {
    background-color: #C13584; /* Cor mais escura no hover */
}

.form-area {
    
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}
    
iframe {

    border: none; /* Remove a borda padrão do iframe */
}