/* Novva Papel de Parede - Design System */

:root {
  --primary: #e91e8c;
  --secondary: #00bcd4;
  --whatsapp: #25d366;
  --text-dark: #1a1a1a;
  --text-gray: #5e5e5b;
  --bg-light: #f8f8f7;
  --white: #ffffff;
  --border: #f0f0f0;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

/* Links: remover sublinhado padrão */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display-title {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Contact & Map Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-align: center;
  grid-column: span 2;
}

.map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-details h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--black);
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-entry {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.contact-entry-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 5px;
}

.contact-entry-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--black);
}

.contact-entry-text p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

.icon-magenta {
  color: var(--primary);
}

.icon-green {
  color: var(--whatsapp);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-title {
    font-size: 2.2rem;
    grid-column: span 1;
  }
}

/* Typography Utilities */
.display-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1; /* Tighter line height for large titles */
}

@media (min-width: 768px) {
  .display-title {
    font-size: 3.2rem; /* Adjusted for better fit in 2-column grid */
  }
}

/* Replaced gradient-text with a standard dark color for H1 as per image */
.hero .display-title {
  font-size: 3.5rem; /* Making it very bold and large like in the image */
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 0.75rem; /* Fully rounded buttons as per image */
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background-color: #d01a7a;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background-color: #0097a7;
}

/* Section Components */
section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

/* Card Styles */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.15);
  transform: translateY(-4px);
  border-radius: var(--radius);
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background-color: var(--whatsapp);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-icon {
  font-size: 32px;
  line-height: 1;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1fb855;
}

/* Grid Utilities */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

.image-rounded {
  width: 100%;
  border-radius: 24px; /* More rounded */
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15); /* Cyan glow from reference */
}

/* Product Cards & Swiper */
.product-swiper {
  padding: 2rem 0 5rem;
  overflow: hidden !important; /* Fixed: only show slides of the current group */
}

.product-card {
  background: var(--white);
  border-radius: 1rem; /* Adjusted for better fit */
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Softer shadow */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth bouncy transition */
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: 4px solid #f0f0f0; /* Subtle base border */
  /* Remove default rotation from here to use alternating tilts below */
}

.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 62%; /* Starts from middle to bottom as seen in image */
  width: 4px;
  background-color: var(--primary);
  z-index: 2;
  border-bottom-left-radius: 1rem;
}

.product-card:hover {
  transform: rotate(0) scale(1.05) !important; /* Straightens and expands */
  box-shadow: 0 20px 40px rgba(233, 30, 140, 0.15);
  z-index: 10;
  border-radius: 1rem; /* Adjusted for better fit */
}

/* Alternating Tilted Effect */
.swiper-slide:nth-child(odd) .product-card {
  transform: rotate(-2deg);
}

.swiper-slide:nth-child(even) .product-card {
  transform: rotate(2deg);
}

.product-image {
  position: relative;
  width: 100%;
  padding-top: 60%; /* Adjusted for slightly taller images */
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 4px; /* More rectangular as per image */
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
}

.product-info {
  padding: 1rem 2rem; /* More horizontal padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.product-name {
  font-size: 1.2rem; /* Larger and bolder */
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.product-number {
  font-size: 1rem;
  color: #999;
  margin-bottom: 2rem;
}

.btn-card {
  display: block;
  width: 100%;
  padding: 5px 0;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
  margin-top: auto;
  font-size: 0.85rem;
}

.btn-card:hover {
  background-color: #d01a7a;
  transform: translateY(-2px);
}

/* Custom Swiper Controls */
.swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background-color: #d01a7a;
  transform: scale(1.1);
}

.swiper-pagination-custom {
  position: static !important;
  width: auto !important;
  display: flex;
  gap: 0.5rem;
}

.swiper-pagination-custom .swiper-pagination-bullet {
  background: #dbdbdb;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 25px;
  border-radius: 5px;
}

/* Visit Store Section */
.visit-store-section {
  background-color: #1a1a1a;
  padding: 5rem 0;
  color: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.visit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.visit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.visit-icon-pink {
  background-color: var(--primary);
}

.visit-icon-cyan {
  background-color: var(--secondary);
}

.visit-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.visit-text p {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
}
/* Testimonial Section */
.testimonial-swiper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 1.3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 6px solid var(--primary);
  margin: 1rem;
}

.stars {
  color: #ffcc00;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.3rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: normal !important;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}

/* Side navigation for testimonials */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: -70px;
}

.testimonial-next {
  right: -70px;
}

@media (max-width: 1024px) {
  .testimonial-prev {
    left: -20px;
  }
  .testimonial-next {
    right: -20px;
  }
  .testimonial-swiper {
    max-width: 90%;
  }
}

/* Footer Section */
.main-footer {
  background-color: #1a1a1a;
  color: #a0a0a0;
  padding: 5rem 0 3rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-desc {
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #a0a0a0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-copy {
  display: block;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
  .footer-logo img {
    margin: 0 auto 1.5rem;
  }
}

/* Cleanup Utilities */
.hero-desc {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-dark {
  margin-bottom: 4rem;
  color: var(--white);
  place-self: center;
}

.collection-header {
  margin-bottom: 3rem;
  justify-items: center;
}

.pagination-center {
  margin-top: 3rem;
  justify-content: center;
  display: flex;
}

.map-card iframe {
  border: 0;
}

.contact-col-spacing {
  margin-bottom: 3rem;
}

/* Responsiveness Refinements */
@media (max-width: 480px) {
  .display-title {
    font-size: 2rem;
  }
  .hero .display-title {
    font-size: 2.2rem;
  }
  .container {
    padding: 0 1rem;
  }
}
