:root {
  --primary: #020d26;
  --accent: #cacac9;
  --white: #ffffff;
  --bg-light: #f4f4f4;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
}
.logo span {
  color: var(--accent);
  font-weight: 300;
}
.social-top a {
  color: var(--white);
  margin-left: 15px;
  font-size: 1.2rem;
  transition: 0.3s;
}
.social-top a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(2, 13, 38, 0.85), rgba(2, 13, 38, 0.85)),
    url("isset/vestuario01.png") center/cover;
  color: var(--white);
  display: flex;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero p {
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--accent);
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(202, 202, 201, 0.3);
}

/* Seções de Título */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--primary);
  position: relative;
}
.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--accent);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Cards do Carrossel */
.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.4s;
  border: 1px solid #eee;
}
.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.card-info {
  padding: 1.5rem;
  text-align: center;
  background: var(--primary);
  color: var(--white);
}

/* Contato */
.contact-section {
  padding: 5rem 0;
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.contact-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.contact-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact-item:hover {
  transform: translateY(-10px);
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}
.copyright {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
