/* ===== VARIABLES ===== */
:root {
  /* Colors - Coffee Theme */
  --coffee-dark: #3e2723;
  --coffee-medium: #6d4c41;
  --terracota: #d4866f;
  --cream: #f5f1ed;
  --cream-dark: #e8dfd8;
  --gold: #d4a574;
  --white: #ffffff;
  --black: #1a1a1a;
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Work Sans', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 20px;
  
  /* Effects */
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(62, 39, 35, 0.08);
  --shadow-md: 0 4px 20px rgba(62, 39, 35, 0.12);
  --shadow-lg: 0 8px 30px rgba(62, 39, 35, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.text-accent {
  color: var(--terracota);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.header__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coffee-dark);
}

.header__logo i {
  color: var(--terracota);
  font-size: 1.8rem;
}

.header__nav {
  display: flex;
  gap: 30px;
}

.header__link {
  font-weight: 500;
  color: var(--coffee-dark);
  position: relative;
  padding: 5px 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracota);
  transition: var(--transition);
}

.header__link:hover::after {
  width: 100%;
}

.header__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--coffee-dark);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero__image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(62, 39, 35, 0.3), rgba(212, 134, 111, 0.2));
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--coffee-dark);
}

.hero__badge i {
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--coffee-dark);
  margin-bottom: 20px;
  max-width: 600px;
}

.hero__title--accent {
  color: var(--terracota);
  display: block;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--coffee-medium);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__info {
  display: flex;
  gap: 30px;
}

.hero__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--coffee-medium);
  font-weight: 500;
}

.hero__info-item i {
  color: var(--terracota);
  font-size: 1.2rem;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--coffee-medium);
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-size: 1rem;
}

.btn--primary {
  background: var(--terracota);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--coffee-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  border-color: var(--coffee-dark);
  color: var(--coffee-dark);
}

.btn--outline:hover {
  background: var(--coffee-dark);
  color: var(--white);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image--main {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about__image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__label {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--terracota);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.about__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--terracota);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--coffee-dark);
  margin-bottom: 20px;
}

.about__text {
  color: var(--coffee-medium);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__feature {
  display: flex;
  gap: 15px;
}

.about__feature-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracota);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.about__feature-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--coffee-dark);
  margin-bottom: 5px;
}

.about__feature-text {
  color: var(--coffee-medium);
  font-size: 0.95rem;
}

/* ===== MENU ===== */
.menu {
  padding: var(--section-padding);
  background: var(--cream);
}

.menu__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.menu__header {
  text-align: center;
  margin-bottom: 60px;
}

.menu__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--terracota);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.menu__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--coffee-dark);
  margin-bottom: 15px;
}

.menu__text {
  color: var(--coffee-medium);
  max-width: 600px;
  margin: 0 auto;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.menu__card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.menu__card--featured {
  grid-column: span 1;
}

.menu__card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.menu__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.menu__card:hover .menu__card-image img {
  transform: scale(1.1);
}

.menu__card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu__card-content {
  padding: 25px;
}

.menu__card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--coffee-dark);
  margin-bottom: 10px;
}

.menu__card-desc {
  color: var(--coffee-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.menu__card-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--terracota);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--section-padding);
  background: var(--white);
}

.gallery__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.gallery__header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--terracota);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.gallery__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--coffee-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
  height: 620px;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(62, 39, 35, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__label {
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
}

/* ===== EXPERIENCE ===== */
.experience {
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-medium));
  padding: 80px 20px;
  color: var(--white);
}

.experience__container {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.experience__icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.experience__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.experience__text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 50px;
}

.experience__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.experience__stat {
  text-align: center;
}

.experience__stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}

.experience__stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-padding);
  background: var(--cream);
}

.testimonials__container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--terracota);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.testimonials__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--coffee-dark);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.testimonial__stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial__text {
  color: var(--coffee-medium);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

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

.testimonial__name {
  font-weight: 600;
  color: var(--coffee-dark);
  margin-bottom: 2px;
}

.testimonial__role {
  font-size: 0.9rem;
  color: var(--coffee-medium);
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-padding);
  background: var(--white);
}

.contact__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--coffee-dark);
  margin-bottom: 15px;
}

.contact__text {
  color: var(--coffee-medium);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.contact__detail {
  display: flex;
  gap: 15px;
}

.contact__detail-icon {
  width: 45px;
  height: 45px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracota);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__detail-title {
  font-weight: 600;
  color: var(--coffee-dark);
  margin-bottom: 5px;
}

.contact__detail-text {
  color: var(--coffee-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact__detail-text a {
  color: var(--terracota);
  font-weight: 500;
}

.contact__detail-text a:hover {
  text-decoration: underline;
}

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social-link {
  width: 45px;
  height: 45px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coffee-dark);
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact__social-link:hover {
  background: var(--terracota);
  color: var(--white);
  transform: translateY(-3px);
}

.contact__form-wrapper {
  background: var(--cream);
  padding: 40px;
  border-radius: 12px;
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--coffee-dark);
  margin-bottom: 10px;
}

.contact__form-text {
  color: var(--coffee-medium);
  margin-bottom: 30px;
}

/* ===== FORM ===== */
.form__group {
  position: relative;
  margin-bottom: 25px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--white);
  color: var(--coffee-dark);
  transition: var(--transition);
}

.form__input:focus {
  outline: none;
  border-color: var(--terracota);
}

.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  top: -10px;
  left: 12px;
  font-size: 0.85rem;
  background: var(--white);
  padding: 0 8px;
  color: var(--terracota);
}

.form__label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--coffee-medium);
  font-size: 1rem;
  pointer-events: none;
  transition: var(--transition);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__textarea + .form__label {
  top: 24px;
  transform: none;
}

.form__textarea:focus + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label {
  top: -10px;
  transform: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--coffee-dark);
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer__logo i {
  color: var(--gold);
  font-size: 1.8rem;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--terracota);
  transform: translateY(-3px);
}

.footer__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__list i {
  color: var(--gold);
  margin-top: 3px;
}

.footer__schedule {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer__newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer__newsletter {
  display: flex;
  gap: 10px;
}

.footer__input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-sans);
}

.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__btn {
  padding: 12px 20px;
  background: var(--terracota);
  border: none;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.footer__btn:hover {
  background: var(--gold);
}

.footer__bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__credits a {
  color: var(--gold);
  font-weight: 600;
}

.footer__credits a:hover {
  text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    gap: 20px;
  }
  
  .header__nav.active {
    left: 0;
  }
  
  .header__toggle {
    display: block;
  }
  
  .hero__image-wrapper {
    width: 100%;
    clip-path: none;
    opacity: 0.3;
  }
  
  .hero__content {
    z-index: 20;
  }
  
  .about__container,
  .contact__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about__image-accent {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -20px;
  }
  
  .menu__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .gallery__item--tall {
    grid-row: span 1;
    height: 300px;
  }
  
  .gallery__item--wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 60px 20px;
  }
  
  .hero {
    min-height: 90vh;
    margin-top: 70px;
  }
  
  .hero__buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .about__image-accent {
    display: none;
  }
  
  .menu__grid,
  .gallery__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .experience__stats {
    gap: 40px;
  }
  
  .form__row {
    grid-template-columns: 1fr;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
