/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}



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

:root {
  /* Brand Colors */
  --cream-light: #FAF8F3;
  --cream-white: #F5F3EB;
  --charcoal: #3D3D3D;
  --grey-medium: #8B8B8B;
  --grey-brown: #6B5E5A;
  --rose-soft: #D4A5A5;
  --amber: #D4A747;
  --black: #1A1A1A;

  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-light);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  padding: var(--space-md) 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.logo-image {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 2em;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--charcoal);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-white) 0%, var(--cream-light) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 5%;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 70%);
  opacity: 0.15;
  top: -300px;
  right: -300px;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1000px;
}

.coming-soon {
  font-size: 1em;
  letter-spacing: 3px;
  color: var(--amber);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 6em;
  font-weight: 300;
  letter-spacing: 20px;
  margin-bottom: var(--space-md);
  color: var(--charcoal);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 2.5em;
  letter-spacing: 8px;
  color: var(--grey-brown);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-description {
  font-size: 1.2em;
  color: var(--grey-brown);
  margin-bottom: var(--space-3xl);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown */
.countdown-container {
  margin-bottom: var(--space-3xl);
}

.countdown-title {
  font-size: 1.1em;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  font-weight: 500;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.countdown-item {
  background-color: var(--cream-white);
  padding: var(--space-lg);
  min-width: 140px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.countdown-item:hover {
  transform: translateY(-5px);
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: 4em;
  font-weight: 300;
  color: var(--rose-soft);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.countdown-label {
  font-size: 0.9em;
  letter-spacing: 2px;
  color: var(--grey-brown);
  text-transform: uppercase;
  font-weight: 400;
}

/* Pre-order Section */
.pre-order-box {
  background-color: var(--cream-white);
  padding: var(--space-2xl);
  border-radius: 4px;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.pre-order-title {
  font-family: var(--font-serif);
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: var(--space-md);
  color: var(--charcoal);
  text-align: center;
}

.pre-order-info {
  background-color: var(--cream-light);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-left: 4px solid var(--rose-soft);
}

.pre-order-info p {
  font-size: 0.95em;
  color: var(--grey-brown);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.pre-order-info p:last-child {
  margin-bottom: 0;
}

.info-highlight {
  color: var(--amber);
  font-weight: 500;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-label {
  font-size: 0.85em;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--charcoal);
  text-transform: uppercase;
}

.form-input {
  padding: 14px var(--space-md);
  border: 2px solid var(--grey-medium);
  background-color: var(--cream-light);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.95em;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--rose-soft);
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.btn {
  padding: 14px 40px;
  border: none;
  font-size: 0.9em;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
}

.btn-accent {
  background-color: var(--rose-soft);
  color: var(--charcoal);
}

.btn-accent:hover {
  background-color: #C89090;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 165, 0.4);
}

/* Social Proof */
.social-proof {
  padding: var(--space-3xl) 5%;
  background-color: var(--cream-white);
}

.social-proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto var(--space-3xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--cream-light);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5em;
  font-weight: 300;
  color: var(--rose-soft);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9em;
  letter-spacing: 1px;
  color: var(--grey-brown);
  text-transform: uppercase;
  font-weight: 400;
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--charcoal);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background-color: var(--cream-light);
  padding: var(--space-2xl);
  border-radius: 4px;
  border-left: 4px solid var(--rose-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 1.1em;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: 1em;
  color: var(--grey-brown);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 1em;
  color: var(--charcoal);
  letter-spacing: 1px;
}

.testimonial-author span {
  font-size: 0.85em;
  color: var(--grey-medium);
  letter-spacing: 0.5px;
}

/* Features */
.features {
  padding: var(--space-3xl) 5%;
  background-color: var(--cream-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: var(--space-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream-light);
  border-radius: 50%;
  font-size: 2em;
  color: var(--amber);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.feature-description {
  font-size: 0.95em;
  color: var(--grey-brown);
  line-height: 1.7;
}

/* About Brand Section */
.about-brand {
  padding: var(--space-3xl) 5%;
  background-color: var(--cream-light);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro {
  font-family: var(--font-serif);
  font-size: 1.4em;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--grey-brown);
  text-align: center;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.value-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--cream-white);
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-soft), #C89090);
  border-radius: 50%;
  font-size: 2em;
  color: var(--cream-white);
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.value-item p {
  font-size: 0.95em;
  color: var(--grey-brown);
  line-height: 1.7;
}

/* Gallery Section */
.gallery {
  padding: var(--space-3xl) 5%;
  background-color: var(--cream-white);
}

.gallery-subtitle {
  font-size: 1.1em;
  color: var(--grey-brown);
  text-align: center;
  margin-bottom: var(--space-2xl);
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--cream-light);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item-large {
  grid-column: span 2;
  height: 450px;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-white) 0%, var(--cream-light) 100%);
  color: var(--grey-medium);
  font-size: 1em;
  letter-spacing: 1px;
  text-align: center;
  padding: var(--space-lg);
}

.gallery-placeholder i {
  font-size: 3em;
  margin-bottom: var(--space-md);
  color: var(--rose-soft);
}

.gallery-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.1em;
  letter-spacing: 2px;
}

/* Timeline */
.timeline {
  padding: var(--space-3xl) 5%;
  background-color: var(--cream-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3em;
  font-weight: 400;
  letter-spacing: 8px;
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--charcoal);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--cream-white);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.timeline-item:hover {
  transform: translateX(10px);
}

.timeline-date {
  min-width: 120px;
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--rose-soft), #C89090);
  border-radius: 4px;
}

.timeline-day {
  font-family: var(--font-serif);
  font-size: 2.5em;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}

.timeline-month {
  font-size: 0.85em;
  letter-spacing: 1px;
  color: var(--charcoal);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: var(--space-xs);
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8em;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.timeline-content p {
  font-size: 0.95em;
  color: var(--grey-brown);
  line-height: 1.7;
}

/* Newsletter */
.newsletter {
  padding: var(--space-3xl) 5%;
  background: linear-gradient(135deg, var(--rose-soft) 0%, #C89090 100%);
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-serif);
  font-size: 2.5em;
  font-weight: 400;
  letter-spacing: 6px;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.newsletter p {
  font-size: 1.1em;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 14px var(--space-md);
  border: 2px solid var(--charcoal);
  background-color: var(--cream-white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.95em;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.newsletter-success {
  display: none;
  background-color: var(--charcoal);
  color: var(--cream-white);
  padding: var(--space-md);
  border-radius: 4px;
  margin-top: var(--space-md);
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-success.show {
  display: block;
  animation: slideDown 0.5s ease;
}

/* Footer */
footer {
  padding: var(--space-2xl) 5%;
  background-color: var(--charcoal);
  color: var(--cream-white);
  text-align: center;
}

.social-links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-medium);
  color: var(--grey-medium);
  font-size: 1.2em;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--amber);
  border-color: var(--amber);
  color: var(--charcoal);
}

footer p {
  font-size: 0.9em;
  color: var(--grey-medium);
  letter-spacing: 1px;
}

/* Success Message */
.success-message {
  display: none;
  background-color: var(--amber);
  color: var(--black);
  padding: var(--space-md);
  border-radius: 4px;
  margin-top: var(--space-md);
  font-weight: 500;
  text-align: center;
}

.success-message.show {
  display: block;
  animation: slideDown 0.5s ease;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 2em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5em;
    letter-spacing: 10px;
  }

  .hero-subtitle {
    font-size: 1.8em;
    letter-spacing: 4px;
  }

  .logo-text {
    font-size: 1.5em;
    letter-spacing: 4px;
  }

  .logo-image {
    height: 40px;
  }

  .countdown {
    gap: var(--space-md);
  }

  .countdown-item {
    min-width: 100px;
    padding: var(--space-md);
  }

  .countdown-number {
    font-size: 3em;
  }

  .section-title {
    font-size: 2em;
    letter-spacing: 4px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-date {
    min-width: auto;
  }

  .pre-order-box {
    padding: var(--space-lg);
  }

  .social-proof-stats {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
  }

  .newsletter h2 {
    font-size: 1.8em;
    letter-spacing: 3px;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.7em;
  }
}
