 .laurareis{
    padding: 20px;
    background-color: bisque;

}

.logo{
    width: 20%;
}

.letras1{
    color: black;
    font-size: 2.0rem;
    font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-style: normal;
}

.fonte{
    
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-style: normal;
      
}

/* CSS minimalista e limpo baseado na referência */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar minimalista */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
  color: #333 !important;
}

.nav-link {
  color: #666 !important;
  font-weight: 400;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #333 !important;
}

/* Hero section limpa e espaçada */
.hero-section {
  padding: 150px 0 100px;
  background: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #333;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Botões minimalistas */
.btn-outline-dark {
  border: 2px solid #333;
  color: #333;
  padding: 12px 30px;
  font-weight: 400;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: #333;
  color: white;
}

.btn-dark {
  background: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 0;
  font-weight: 400;
}

/* Seções com espaçamento adequado */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: #333;
}

/* Cards de trabalho minimalistas */
.work-item {
  text-align: center;
  margin-bottom: 2rem;
}

.work-image {
  margin-bottom: 1.5rem;
}

.placeholder-image {
  height: 200px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9ecef;
}

.placeholder-image i {
  font-size: 3rem;
  color: #ccc;
}

.work-item h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.work-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Habilidades minimalistas */
.skill-item {
  padding: 1rem;
}

.skill-icon {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.skill-item h5 {
  font-weight: 400;
  color: #333;
}

/* Formulário de contato limpo */
.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 15px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-form .form-control:focus {
  border-color: #333;
  box-shadow: none;
}

/* Informações de contato */
.contact-info p {
  margin-bottom: 0.5rem;
  color: #666;
}

.social-links a {
  color: #666;
  font-size: 1.5rem;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #333;
}

/* Background alternado */
.bg-light {
  background-color: #f8f9fa !important;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-section {
    padding: 120px 0 80px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

:root {
            --primary-color: #007bff;
            --secondary-color: #0056b3;
            --text-dark: #333;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .navbar-brand {
            font-weight: bold;
            color: var(--primary-color) !important;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .btn-custom {
            background-color: white;
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }

        .card-project {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            cursor: pointer;
        }

        .card-project:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .project-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .about-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        .projects-section {
            padding: 80px 0;
        }

        .contact-section {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0;
        }

        .footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary-color);
        }