/* ----- Rinvidismo Home: Vibrant Energetic Modern CSS ----- */

/* CSS RESET + Normalization */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FFFFFF;
  color: #232629;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #374046;
  --brand-primary: #374046;
  --brand-secondary: #E1D7C6;
  --brand-light: #FFFFFF;
  --brand-accent1: #BB875C;
  --brand-accent2: #9C6A34;
  --electric-pink: #EF4E7B;
  --vivid-orange: #FF9700;
  --electric-blue: #1DA1F2;
  --vibrant-yellow: #FFED4E;
  --badge-bg: #FF9700;
  --box-shadow: 0 2px 24px rgba(84,24,72,0.13), 0 1.5px 6px rgba(28,28,28,0.09);
  --card-shadow: 0 4px 16px rgba(187,135,92,0.10), 0 2px 8px rgba(55,64,70,0.09);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 13px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, blockquote, ul, ol, li {
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #303133;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-accent2);
  background: #FFF8EF;
  border-left: 5px solid var(--vivid-orange);
  margin: 0 0 16px 0;
  padding: 20px 22px 15px 18px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  font-size: 1.18rem;
}

ul, ol {
  padding-left: 1.5em;
}
ul li, ol li {
  margin-bottom: 8px;
}

strong, b {
  font-weight: 700;
}

.brand-value {
  color: var(--electric-pink);
}

/* --- GENERAL CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--box-shadow);
  position: relative;
  transition: box-shadow 0.18s;
}

/* --- FLEX LAYOUTS --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: var(--card-shadow);
  transition: transform 0.28s cubic-bezier(.2,.9,.33,1.02), box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 32px rgba(239,78,123,0.18);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffcea;
  border-left: 5px solid var(--badge-bg);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  flex: 1 1 340px;
  min-width: 240px;
  transition: box-shadow 0.21s, transform 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(29,161,242,0.11);
  transform: scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO --- */
.hero {
  background: linear-gradient(95deg, var(--brand-secondary) 70%, #FFED4E 160%);
  padding: 56px 0 44px 0;
  margin-bottom: 0;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 2px 6px #fff5;
}
.hero p {
  font-size: 1.18rem;
  color: #2e363c;
}

.cta-banner {
  background: linear-gradient(92deg, var(--vivid-orange) 46%, #FFD900 200%);
  padding: 42px 0 38px 0;
  margin-bottom: 0;
  border-radius: 24px;
  box-shadow: var(--box-shadow);
}
.cta-banner h2, .cta-banner p {
  color: var(--primary);
}


/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(187, 135, 92,0.06);
  z-index: 88;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  height: 78px;
  justify-content: space-between;
  gap: 16px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  padding: 10px 4px;
  border-radius: 6px;
  font-size: 1.07rem;
}
nav a.cta {
  background: var(--electric-pink);
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 1.12rem;
  margin-left: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(239, 78, 123, 0.07);
  transition: background 0.20s, color 0.20s, transform 0.18s;
}
nav a.cta:hover, nav a.cta:focus {
  background: var(--vivid-orange);
  color: var(--primary);
  transform: scale(1.035);
}
nav a:hover, nav a:focus {
  background: #FFF6E3;
  color: var(--electric-pink);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: 0;
  color: var(--electric-pink);
  cursor: pointer;
  margin-left: 22px;
  z-index: 1101;
  transition: background 0.15s, color 0.15s;
  border-radius: 9px;
  padding: 5px 12px 2px 12px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffedfa;
  color: var(--vivid-orange);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fffdfa;
  z-index: 1200;
  transform: translateX(102vw);
  transition: transform 0.36s cubic-bezier(.74,.23,.33,1);
  box-shadow: 0 1px 36px 8px rgba(239, 78, 123, 0.11);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 64px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 16px 18px 0 auto;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--vivid-orange);
  cursor: pointer;
  transition: color 0.18s;
  border-radius: 11px;
  padding: 5px 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE3EF;
  color: var(--electric-pink);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding-left: 40px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary);
  border-radius: 7px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 9px;
  padding: 11px 12px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent1);
  color: #fff;
}


/* --- CTA BUTTONS --- */
.cta, .mini-cta {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  background: var(--electric-pink);
  border-radius: 32px;
  padding: 13px 36px;
  margin-top: 14px;
  box-shadow: 0 2px 13px rgba(239,78,123,.18);
  border: none;
  cursor: pointer;
  letter-spacing: 0.015em;
  transition: background 0.22s, color 0.21s, transform 0.18s;
}
.cta:hover, .cta:focus {
  background: var(--vivid-orange);
  color: var(--primary);
  transform: scale(1.05);
}
.mini-cta {
  font-size: 1rem;
  padding: 7px 18px;
  background: var(--electric-blue);
  color: #fff;
  margin-top: 8px;
}
.mini-cta:hover, .mini-cta:focus {
  background: var(--brand-accent2);
  color: #fffceb;
}

/* --- FEATURES GRID (INDEX) --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
}
.feature-grid li {
  flex: 1 1 270px;
  background: #FFF8EF;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 23px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
  transition: box-shadow 0.21s, transform 0.21s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 18px rgba(29,161,242,0.13);
  transform: translateY(-4px) scale(1.02);
  background: #FFFAE3;
}
.feature-grid img {
  width: 42px;
  height: 42px;
}
.feature-grid h3 {
  font-size: 1.2rem;
  color: var(--brand-accent2);
  margin-bottom: 8px;
  font-weight: 900;
}

/* --- TESTIMONIALS --- */
.testimonial-card p {
  font-size: 1rem;
  color: #232629;
  margin: 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.testimonial-card blockquote {
  margin: 0 0 0 0;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 1.04rem;
  color: var(--brand-accent2);
}

/* --- BLOG --- */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: #fff5fd;
  border-radius: 17px;
  box-shadow: var(--box-shadow);
  padding: 22px 21px 12px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.19s;
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.blog-post:hover {
  box-shadow: 0 6px 32px rgba(29,161,242,0.10);
  transform: scale(1.02);
}
.blog-post .category {
  display: inline-block;
  background: var(--badge-bg);
  color: #fff;
  border-radius: 12px;
  padding: 5px 14px;
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: absolute;
  right: 24px;
  top: 18px;
}

.newsletter-signup {
  background: #E1D7C6;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  margin-bottom: 60px;
}

/* --- SERVICES --- */
.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li {
  flex: 1 1 340px;
  background: #fff8ef;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  padding: 31px 28px 20px 28px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .19s, transform .19s;
}
.service-list li:hover {
  box-shadow: 0 8px 25px rgba(255,151,0,.14);
  transform: scale(1.018);
}
.service-list h2 {
  font-size: 1.27rem;
  margin-bottom: 10px;
  color: var(--brand-accent2);
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.service-list .price {
  color: var(--electric-pink);
  background: #fffbe5;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 13px;
  border-radius: 11px;
}

/* --- CONTACT DETAILS --- */
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--primary);
  background: #FFFAF2;
  padding: 10px 20px 10px 11px;
  border-radius: 12px;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* --- FOOTER --- */
footer {
  background: #242728;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 24px;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: center;
  justify-content: space-between;
}
.footer-main .logo img {
  width: 52px;
  height: 52px;
}
footer nav {
  gap: 17px;
}
footer nav a {
  color: #fff;
  opacity: 0.9;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 6px 3px;
  border-radius: 5px;
  transition: background 0.15s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--vivid-orange);
  background: #fff2;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 185px;
  margin-top: 0;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.99rem;
  align-items: flex-start;
  background: #332914;
  border-radius: 14px;
  padding: 18px 18px 11px 18px;
  color: #ffe;
}
.footer-contact p, .footer-contact a {
  color: #ffe;
  opacity: 0.97;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 17px 7px 0;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}
.footer-credits {
  padding-top: 13px;
  color: #EFC19E;
  font-size: .98rem;
  text-align: left;
}

/* --- UTILITIES --- */
.next-steps {
  margin: 18px 0 0 0;
  font-size: 1.12rem;
  color: var(--electric-pink);
  font-weight: 500;
}
em {
  color: var(--brand-accent1);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 24px;
  z-index: 1800;
  background: #ffffff;
  box-shadow: 0 6px 26px 4px rgba(29, 161, 242, 0.09);
  padding: 32px 18px 20px 22px;
  border-radius: 16px 16px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform .28s, opacity .18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}
.cookie-banner-title {
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--primary);
}
.cookie-banner-text {
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.92;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-btn {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 22px;
  padding: 10px 23px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.14s;
}
.cookie-btn.accept {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--vivid-orange);
  color: var(--primary);
  transform: scale(1.06);
}
.cookie-btn.reject {
  background: var(--brand-secondary);
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFF1EA;
  color: var(--electric-pink);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--electric-blue);
  border: 1.5px solid var(--electric-blue);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--electric-blue);
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 3000;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 22px;
  min-width: 333px;
  max-width: 97vw;
  box-shadow: 0 10px 48px 8px rgba(239,78,123,.12), 0 2px 9px rgba(29,161,242,.06);
  padding: 38px 22px 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: opacity .18s, transform .21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-40%) scale(0.93);
}
.cookie-modal-title {
  font-size: 1.35rem;
  color: var(--brand-accent1);
  font-weight: 900;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--electric-pink);
  width: 19px;
  height: 19px;
}
.cookie-category .cookie-category-title {
  font-weight: 700;
  color: var(--primary);
}
.cookie-category .cookie-category-desc {
  font-size: 0.98rem;
  color: #2d3040;
  opacity: 0.78;
}
.cookie-modal-close {
  position: absolute;
  top: 22px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--electric-blue);
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 7px;
}

/* --- RESPONSIVE & MOBILE --- */
@media (max-width: 1050px) {
  .container {
    max-width: 990px;
    padding: 0 12px;
  }
  .footer-main, .testimonial-row, .feature-grid, .service-list, .content-grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .feature-grid, .service-list {
    gap: 15px;
  }
  .card-container, .content-grid, .post-list {
    gap: 11px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section, .newsletter-signup {
    padding: 26px 8px;
    margin-bottom: 36px;
  }
  header .container {
    padding: 0 7px;
    height: 64px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 17px;
  }
  .card-container, .content-grid, .feature-grid, .service-list, .post-list, .footer-contact {
    gap: 10px;
  }
  .feature-grid {
    flex-direction: column;
  }
  .feature-grid li {
    min-width: 0;
  }
  .service-list {
    flex-direction: column;
  }
  .service-list li {
    padding: 20px 11px 12px 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .card {
    padding: 18px 9px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    gap: 9px;
    padding: 16px 7px;
  }
  .footer-credits {
    text-align: left;
    padding-left: 2px;
    font-size: 0.92rem;
  }
  .footer-main .logo img {
    width: 40px;
    height: 40px;
  }
  .footer-contact {
    gap: 11px;
    padding: 10px 7px 7px 7px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    min-width: 0;
    padding: 20px 7px 19px 13px;
    max-width: 99vw;
  }
}
@media (max-width: 500px) {
  .hero {
    padding: 27px 0 20px 0;
  }
  h1 {
    font-size: 1.42rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .cta, .mini-cta {
    font-size: 1rem;
    padding: 9px 20px;
  }
  .footer-main .logo img {
    width: 33px;
    height: 33px;
  }
  .section, .newsletter-signup, .cta-banner {
    padding: 14px 2px;
    margin-bottom: 22px;
  }
}

/* --- ANIMATIONS & TRANSITIONS --- */
.card, .feature-grid li, .service-list li, .testimonial-card, .blog-post {
  transition: box-shadow 0.21s, transform 0.21s;
}
.cta, .mini-cta, .cookie-btn {
  transition: background .2s, color .17s, transform .18s;
}
.mobile-menu, .mobile-menu.open {
  transition: transform .36s cubic-bezier(.75,.1,.37,1);
}

/* --- UTILITY CLASSES --- */
.hide {
  display: none !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap-20 { gap: 20px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* END Vibrant Energetic CSS by Rinvidismo Home */
