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

:root {
  /* Cores principais */
  --primary-color: #2D5016;
  --secondary-color: #E8B4CB;
  --accent-color: #F4A6CD;
  --background-color: #F5F1EB;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --text-muted: #999999;
  
  /* Sombras */
  --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-heavy: 0 10px 40px rgba(0,0,0,0.15);
  
  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fontes */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

.form-section {
    background-color: var(--white);
}

.conteiner-principal {
    background-color: var(--white);
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-sm);

    display: flex;
    justify-content: center;
    align-items: center;
}

.formulario {
    width: 100%;
    padding: var(--spacing-xl);
    background: var(--background-color);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(45, 80, 22, 0.08);
}

.formulario:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.cabecalho {
    text-align: center;
    margin-bottom: 40px;
}

.cabecalho h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 15px;
}

.cabecalho p {
    color: var(--text-light);
    line-height: 1.6;
}

form {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.campo-nome, .campo-telefone {
    margin-bottom: 25px;
}

.campo-nome label {
    font-weight: 500;
    color: var(--primary-color);
}

.campo-nome input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}

.campo-telefone {
    display: flex;
    flex-direction: column;
}

.campo-input {
    margin-top: 10px;

    display: flex;
    justify-content: space-between;
}

#ddd {
    width: 20%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

#fone {
    width: 75%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-form {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}