@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&family=Merriweather+Sans:wght@400;700&display=swap');

/* ======= GLOBAIS ======= */

:root {
  /* ======= CORES ======= */
  --color-white: #fff;
  --color-white-text: #E0BFB8;
  --color-red: #bf2025;
  --color-red-hover: #9a1a1e;
  --color-black: #000;
  --color-black-title: #0d0402;
  --divider-color: #331C18;

  /* ======= FONTES ======= */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Merriweather Sans', sans-serif;

  /* ======= FONT WEIGHTS ======= */
  --fw-regular: 400;
  --fw-medium: 600;
  --fw-bold: 700;

}

/* ======= RESET ======= */

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

a {
  text-decoration: none;
}

body {
  font-family: var(--font-primary);
  background: var(--color-white);
  overflow-x: hidden;
}

/* ======= NOTIFICATION BAR ======= */
.notification-bar {
  background: var(--color-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 100px;
  position: relative;
  z-index: 10;
}

.notification-bar p {
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 16px;
  flex: 1;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.close-btn:hover {
  opacity: 0.8;
}

/* ======= HERO SECTION ======= */
.hero-section {
  width: 100%;
  max-width: 1440px;
  min-height: 660px;
  padding: 7vh 9vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-color: white;
  background-image: url('attached_assets/stock_images/om-play-background-v2.jpg');
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 0;
}

.logo-hero {
  width: 169px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 30px;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.hero-button-container{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-content-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-title {
  color: var(--color-black-title);
  /* text-transform: uppercase; */
  font-weight: var(--fw-medium);
  /*font-size: 64px;
  line-height: 70px;*/
  font-size: 32px;
}

.hero-subtitle-big {
  color: var(--color-black);
  font-size: 32px;
  font-weight: var(--fw-regular);
  line-height: 32px;
}


.hero-subtitle {
  color: var(--color-black);
  font-size: 24px;
  font-weight: var(--fw-regular);
  line-height: 32px;
}

.hero-features-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 32px;
  margin-left: 35px;
}

.hero-features-text {
  color: var(--color-black);
  font-size: 16px;
  font-weight: var(--fw-regular);
  line-height: 32px;

}

.cta-button {
  background: var(--color-red);
  color: var(--color-white);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: normal;
  border: none;
  cursor: pointer;
  width: 300px;
  height: 80px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.cta-button:hover {
  background: var(--color-red-hover);
}

/* ======= CONTENT SECTION ======= */
.content-section {
  background: #1B0602;
  width: 100%;
  min-height: 840px;
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.plans-title{
  color: var(--color-white);
  font-size: 64px;
  font-weight: var(--fw-medium);
  line-height: 68px;
}

.plans-subtitle{
  color: var(--color-white);
  font-size: 24px;
  font-weight: var(--fw-regular);
  line-height: 32px;
}

/* ======= PRICING CARD ======= */
.pricing-card {
  padding: 20px 28px;
  border-radius: 20px;
  min-width: 400px;
  max-width: 400px;
  max-height: 450px;
}

.pricing-container-cards{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.plan-price-wrapper{
  margin-bottom: 16px;
}

/* ======= PRICING CARD - PLANO NÓS ======= */
.pricing-card-nos {
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid var(--color-red);
}

.pricing-card-nos .plan-title {
  color: var(--color-red);
  font-size: 20px;
  font-weight: var(--fw-medium);
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 16px;
}

.pricing-card-nos .plan-description {
  color: var(--color-black);
  font-size: 13px;
  font-weight: var(--fw-regular);
  line-height: 20px;
  padding-bottom: 16px;
}

.pricing-card-nos .plan-price {
  color: var(--color-red);
  font-size: 40px;
  font-weight: var(--fw-medium);
  line-height: 48px;
}

.pricing-card-nos .plan-price-period {
  color: var(--color-red);
  font-size: 13px;
  font-weight: var(--fw-medium);
  line-height: 20px;
  margin-left: 8px;
}

.pricing-card-nos .plan-divider {
  border: 0;
  border-top: 1.5px solid var(--divider-color);
  width: 100%;
  margin: 20px 0;
}

.pricing-card-nos .plan-features {
  color: var(--color-black);
  font-size: 13px;
  font-weight: var(--fw-regular);
  line-height: 28px;
}

/* ======= PRICING CARD - PLANO EU ======= */
.pricing-card-eu {
  background: rgba(224, 191, 184, 0.12);
  border: 1.5px solid #FF0000;
}

.pricing-card-eu .plan-title {
  color: var(--color-white-text);
  font-size: 20px;
  font-weight: var(--fw-medium);
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.pricing-card-eu .plan-description {
  color: var(--color-white-text);
  font-size: 13px;
  font-weight: var(--fw-regular);
  line-height: 20px;
  margin-bottom: 16px;
}

.pricing-card-eu .plan-price {
  color: var(--color-white-text);
  font-size: 40px;
  font-weight: var(--fw-medium);
  line-height: 48px;
  margin-bottom: 16px;
}

.pricing-card-eu .plan-price-period {
  color: var(--color-white-text);
  font-size: 13px;
  font-weight: var(--fw-regular);
  line-height: 20px;
  margin-left: 8px;
}

.pricing-card-eu .plan-divider {
  border: 0;
  border-top: 1.5px solid rgba(182, 151, 145, 0.2);
  width: 100%;
  margin: 20px 0;
}

.pricing-card-eu .plan-features {
  color: var(--color-white-text);
  font-size: 13px;
  font-weight: var(--fw-regular);
  line-height: 28px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 30%;
  justify-content: center;
  gap: 4px;
}

.plan-features li {
  padding-left: 20px;
  position: relative;
  font-weight: var(--fw-regular);
  font-size: 13px;
  line-height: 16px;
  display: flex;
  align-items: center;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: var(--fw-medium);
}

/* ======= PRAN BUTTONS ======= */
.plan-button {
  width: 100%;
  height: 36px;
  border-radius: 16px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.plan-button-filled {
  background: rgba(180, 35, 40, 0.78);
  color: #050100;
  border: none;
}

.plan-button-filled:hover {
  background: var(--color-red-hover);
}

.plan-button-outlined {
  background: transparent;
  color: var(--color-white-text);
  border: 1.5px solid var(--color-white-text);
}

.plan-button-outlined:hover {
  background: rgba(224, 191, 184, 0.1);
}

.plan-price-wrapper {
  display: flex;
  align-items: baseline;
}

.footer{
  background-color: #1B0602;
  color: var(--color-white);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}



@media (max-width: 1024px) {
  .hero-background{
	opacity: 0.7;
  }
}



@media (max-width: 768px) {

  .notification-bar {
    padding: 8px 20px;
    height: auto;
    min-height: 40px;
  }

  .notification-bar p {
    font-size: 10px;
    line-height: 16px;
    padding-right: 10px;
  }

  .hero-background{
    display: none;
  }

  .hero-section{
    padding: 40px 20px;
  }

  .hero-content{
    gap: 20px;
  }

  .hero-content-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .hero-title{
    font-size: 32px;
    line-height: 40px;
    font-weight: var(--fw-medium);
  }

  .hero-subtitle{
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--fw-regular);
  }

  .hero-features-list{
    margin-left: 20px;
    font-size: 14px;
    line-height: 24px;
  }

  .content-section{
    padding: 40px 20px;
    gap: 40px;
  }

  .plans-title{
    font-size: 28px;
    line-height: 40px;
    font-weight: var(--fw-medium);
    text-align: center;
  }

  .plans-subtitle{
    font-size: 16px;
    line-height: 32px;
    font-weight: var(--fw-regular);
    text-align: center;
  }

  .pricing-container-cards{
    flex-direction: column;
    align-items: center;
  }

  .pricing-card-eu {
    max-width: 100%;
    min-width: auto;
    max-height: 100%;
  }

}

@media (max-width: 400px) {
  .pricing-card-nos{
    max-width: 100%;
    min-width: auto;
    max-height: 100%;
  }
}

