@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@500;700&family=Source+Sans+Pro:wght@400;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100..900&display=swap');

/* Fonts */
:root {
  --default-font: "Encode Sans", Sans-serif;
  --heading-font: "Encode Sans", Sans-serif;
  --nav-font: "Encode Sans", Sans-serif;
}

/* ============================================================
   PALETA GRAVIDEZ
   Diferença em relação ao site "acidente":
   - --accent-color:  #fe9c31 (laranja)  →  #e06fa0 (rosa-magenta)
   - --heading-color: #2d465e (azul-marinho) →  #5e2d46 (vinho/bordô)
   - footer background: #141214  →  #1a1016 (preto com leve toque rosado)
   - nav-hover-color e nav-dropdown-hover-color acompanham o novo accent
   - Todo o resto é idêntico ao CSS do site de acidente
   ============================================================ */

:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #5e2d46;          /* era #2d465e */
  --accent-color: #e06fa0;           /* era #fe9c31 */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #212529;
  --nav-hover-color: #e06fa0;        /* era #fe9c31 */
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #e06fa0; /* era #fe9c31 */
}

.light-background {
  --background-color: #fff5f9;       /* era #f3f9ff — tom levemente rosado */
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1a1016;       /* era #0a0908 — preto com toque rosado */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #d4609a;          /* era #409dfd */
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: #1a1016;               /* era #141214 */
  color: #FFF;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 1rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer h3 {
  color: #FFF;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer .address {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.footer .address i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.footer .address p {
  margin: 0;
  line-height: 1.6;
  color: color-mix(in srgb, #FFF, transparent 30%);
  margin-right: 5px;
}

.footer ul {
  display: flex;
  gap: 1rem;
  padding: 0;
  list-style: none;
  margin-bottom: 2rem;
}

.footer ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: color-mix(in srgb, #FFF, transparent 30%);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  background: #e06fa0;               /* era #fd910d */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 111, 160, 0.3); /* era rgba(13,110,253,.3) */
}

.footer p {
  color: color-mix(in srgb, #FFF, transparent 30%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer .form-control {
  background: rgba(199, 193, 193, 0.1);
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  border: 1px solid (--accent-color);
}

.footer .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 0.25rem rgba(224, 111, 160, 0.25); /* era rgba(13,110,253,.25) */
  color: #fff;
}

.footer .form-control::placeholder {
  color: rgba(204, 200, 200, 0.6);
}

.footer .btn-primary {
  padding: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 111, 160, 0.3); /* era rgba(13,110,253,.3) */
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.footer-links a {
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #c9306e;         /* era #c96e18 — versão escura do novo accent */
  transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

.footer .logo img {
  max-height: 50px;
  filter: brightness(1.2);
  transition: all 0.3s ease;
}

.footer .logo img:hover {
  transform: scale(1.05);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.copyright p {
  margin-bottom: 0.5rem;
  color: rgba(167, 167, 167, 0.7);
}

.copyright .sitename {
  color: var(--heading-color);
  font-weight: 600;
}

.credits {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.credits a {
  color: #e06fa0;                    /* era #0d6efd */
  text-decoration: none;
  transition: all 0.3s ease;
}

.credits a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .footer h3 {
    margin-top: 2rem;
  }
  .footer-links.d-flex.justify-content-end {
    justify-content: center !important;
  }
  .footer .logo.d-flex {
    justify-content: center !important;
    margin-top: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer ul {
    justify-content: center;
  }
  .footer .address {
    flex-direction: column;
    align-items: center;
  }
  .footer .address i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

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

.footer ul li a:hover i {
  animation: pulse 1s infinite;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  display: none !important;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 5px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title.not-after h2::after {
  width: 0px;
  height: 0px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {
  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }
  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }
  .call-to-action .shape-1 { width: 200px; height: 200px; }
  .call-to-action .shape-2 { width: 150px; height: 150px; }
  .call-to-action .shape-3 { width: 100px; height: 100px; }
  .call-to-action .dots-1  { width: 150px; height: 150px; }
  .call-to-action .dots-2  { width: 120px; height: 120px; }
  .call-to-action .dots-3  { width: 80px;  height: 80px;  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

@media (max-width: 400px) {
  .header .btn-getstarted {
    display: none;
  }
}

.introduction.section .img-fluid {
  border-radius: 15px;
}

@media (max-width: 575px) {
  .features-cards .feature-box {
    padding: 20px 30px !important;
  }
  section, .section {
    padding-top: 20px !important;
  }
  .section-title h2::after {
    width: 20px !important;
    margin: 4px 5px !important;
  }
}