/* 

---------- TYPOGRAPHY ----------

FONT SIZES
12px / 16px / 20px / 24px / 32px / 40px / 48px / 62px

FONT WEIGHTS
400 / 700

LINE HEIGHTS
1.2 / 1.5

LETTER SPACING
0 / -2px

FONT FAMILY
Poppins

---------- COLORS ----------

PRIMARY
Base: #339af0 (Sky Blue)
Tint: #d0ebff (Arctic)
Shade: #1c7ed6 (Deep Sea)

SECONDARY
Base: #9775fa (Lavendar)
Tint: #e5dbff (Moonligh Iris)
Shade: #7048e8 (Velvet Night)

TERTIARY
Base: #ff922b (Pumpkin)
Tint: #ffe8cc (Dawn)
Shade: #f76707 (Lava)

gray
Base: #495057 (Slate)
Tint: #f1f3f5 (Pebble)
Shade: #212529 (Graphite)
White: #ffffff (White)
Black: #000000 (Black)

---------- BORDER RADIUS ----------

4px / 8px / 20px

---------- SPACING SYSTEM ----------

5px / 10px / 15px / 20px / 25px / 30px / 40px / 50px / 60px / 70px / 80px / 90px / 100px / 125px / 150px / 200px / 250px / 300px / 400px / 500px

*/

/* ----------------------- GLOBAL STYLES ----------------------- */

:root {
    /* FONT SIZE */
    --text-sm: 1.2rem;
    --text-base: 2rem;
    --text-paragraph: 2.5rem;
    --text-h5: 2.8rem;
    --text-h4: 3.0rem;
    --text-h3: 4rem;
    --text-h2: 4.5rem;
    --text-h1: 5rem;

    /* FONT WEIGHT */
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-extra-bold:800;

    /* LINE HEIGHTS */
    --line-height-tighter: 1.0;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;

    /* LETTER SPACING */
    --letter-spacing-semi-tight: -0.5px;
    --letter-spacing-tight: -1px;

    /* FONT FAMILY */
    --font-family: 'Outfit', sans-serif;

    /* COLORS */
    --primary-base: rgb(29, 29, 29) ;
    --primary-tint: ;
    --primary-shade:rgb(29, 29, 29);
    --secondary-base:#4BD295 ;
    --secondary-tint: rgb(222, 238, 231);
    --secondary-shade:rgb(32,92,118);
    --tertiary-base:#f1faff;
    --tertiary-tint:#EAEAEA;
    --tertiary-shade: #dceef8; ;
    --gray-base: #495057;
    --gray-tint: #f1f3f5;
    --gray-shade: #212529;
    --gray-inter: #6C757D;
    --gray-sales-page: #333333;
    --hero-background:  #6C757D;
    --white: #ffffff;
    --black: #000000; 
    --whitesmoke: whitesmoke;
    
    /* MISCELLANEOUS */
    --nav-height: 100px; /* Update the value in the flexbox topic */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
   font-size: 37.5%; 
   /* 6px / 16px = 37.5% */
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--gray-base);
}

.container {
    max-width:1200px;
    width: 90%;
    margin: 0 auto;
}

img {
    max-width: 100%; /* The image can NEVER be wider than its parent container */
    height: auto;    /* Maintains the aspect ratio so it doesn't look squashed */
    display: block;  /* Removes the weird little gap at the bottom of images */
}


h1, h2, h3, h4, h5 {
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--gray-shade);
}

h1 {
    font-size: var(--text-h1);
}

h2 {
    font-size: var(--text-h2);
}

h3 {
    font-size: var(--text-h3);
    color: var(--gray-base);
}

h4 {
    font-size: var(--text-h4);
}

h5 {
    font-size: var(--text-h5);
}

p {
    font-size: var(--text-paragraph);
}

a {
    text-decoration: none;
    font-size: var(--text-paragraph);
    display: inline-block;
}

a:link, a:visited, a:hover, a:active {
    color: var(--gray-base);
}

ul {
    list-style: none;
}

span {
    display: inline-block;
}

.small-text {
    font-size: var(--text-sm);
}

.section-spacing {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-spacing {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-spacing.banner {
    padding-top: 11rem;
    padding-bottom: 8rem;
}

.padding-top-half {
    padding-top: 4rem;
}

.padding-bottom-half {
    padding-bottom: 4rem;
}

.padding-top-half {
    padding-top: 3rem;
}

.padding-bottom-half {
    padding-bottom: 3rem;
}

.font-weight-normal{
    font-weight: var(--font-weight-normal);
}

/* ----------------------- COMPONENTS ----------------------- */

.btn {
    font-size: var(--text-h5);
    text-decoration: none;
    text-transform: uppercase;
    padding: 2rem 4rem;
    border-radius: 15px;
    border: 2px solid var(--primary-base);
    border: none;
    /* background-image: linear-gradient(var(--primary-base)) 0%,var(--secondary-shade) 100%; */
    font-weight: 700; 
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 1px 1px 0px var(--gray-base), 3px 3px 6px rgba(0,0,0,0.2);
    display: inline-block;
    width: 50rem;
    max-width: 90%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.btn-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 3rem;
    text-align: center;
}

.btn-redirection-message{
    font-size: var(--text-base);
    letter-spacing: 0.0rem;
    color: var(--gray-base);
}

.btn-primary:link, .btn-primary:visited {
    color: var(--black);
    background-color: var(--secondary-base);
    border: 2px solid var(--secondary-shade);
    /* background-image: linear-gradient(var(--secondary-base) 0%,var(--primary-base) 100%); */
    border: none;
    transition: 0.5s;
}

.btn-primary:hover, .btn-primary:active {
    color: var(--white);
    background-color: var(--secondary-base);
    border: 2px solid var(--secondary-shade);
    border: none;
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--gray-base);
}

.btn-primary-outline:link, .btn-primary-outline:visited {
    color: var(--secondary-base);
    background-color: var(--white);
    border: 2px solid var(--secondary-shade);
    border: none;
    transition: 0.5s;
}

.btn-primary-outline:hover, .btn-primary-outline:active {
    color: var(--primary-shade);
    background-color: var(--white);
    border: 2px solid var(--primary-shade);
    border: none;
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--gray-base);
}

.btn-secondary:link, .btn-secondary:visited {
    color: var(--white);
    background-color: var(--secondary-base);
    border: 2px solid var(--secondary-base);
    transition: 0.5s;
}

.btn-secondary:hover, .btn-secondary:active {
    color: var(--white);
    background-color: var(--secondary-shade);
    border: 2px solid var(--secondary-shade);
    transform: scale(1.05, 1.05);
    box-shadow: 0px 3px 6px var(--gray-base);
}

.highlight {
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.highlight-primary {
    background-color: var(--primary-base);
}

.highlight-secondary {
    background-color: var(--secondary-base);
    color:#f0ece7
}

.highlight-tertiary {
    background-color: var(--tertiary-base);
}

.logo-md {
    width: 100px;
}

.logo-sm {
    width: 80px;
}

.chat-container {
    height: 7rem;
    width: 7rem;
    background-color: var(--primary-tint);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
}

.chat-icon {
    width: 5rem;
    height: 5rem;
}

.beta {
    position: relative;
}

.beta::after {
    content: 'beta';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.2rem;
    background-color: var(--tertiary-base);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--white);
    transform: translate(70%, -70%);
}


.heading{
    text-align: center;
    line-height: var(--line-height-tight);
}

.heading.margin{
    margin-bottom: 4rem;
}


.container-banner {
    display: flex;
    flex-direction: row;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    margin: 2rem auto 0rem;
    max-width: 350px; /* Increased slightly to fit the icon */
}

.icon-svg {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.icon-svg svg {
    /* Change from % to a fixed size to match the text height */
    width: 100px; 
    height:100px; 
    /* This ensures the icon scales if you change the container size later */
    max-width: 100%; 
}

.banner-promocional {
    display: block;
    text-align: center;
    font-family: sans-serif;
    color: #333;
    
    /* The "Stretch" Magic */
    transform: scaleY(1.2) skewX(-10deg); /* Stretches the text 40% taller */
    transform-origin: center;
    
    /* Tightening the block */
    line-height: 1;
    letter-spacing: -0.0px;
    
    /* Stronger Shadow for the 3D 'Picture' effect */
    text-shadow: 1px 1px 0px var(--gray-shade), 3px 3px 6px rgba(0,0,0,0.1);
    
    max-width: 280px; 
    margin: 3rem auto; /* Added margin because stretching needs space */
    
}

.banner-promocional.gray-background{
    color: var(--black);

    /* A PRIMEIRA parte limpa o fundo cinza, a SEGUNDA dá o efeito de adesivo */
    text-shadow: 
        0px 0px 1px var(--gray-shade), 
        2px 2px 4px rgba(0, 0, 0, 0.1);
}


.texto-destaque {
    font-size: var(--text-paragraph); /* Adjusted for the scaleY height */
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    display: inline-block; /* Required for transform to work perfectly */
}

/* Price Container */

.price-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    color: #333;
    /* Soft Elevation Shadow */
    text-shadow: 
        1px 1px 0px rgba(0,0,0,0.05), /* Sharp edge */
        3px 3px 8px rgba(0,0,0,0.2);   /* Soft depth */
    margin: 0 0 1rem 0;
    gap:1rem;
}

/* "12x de" Label */
.price-label {
    font-size: 2rem; /* 12px based on your 6px rem */
    font-weight: bold;
    margin-right: 0.6rem;
    text-transform: uppercase;
    transform:scaleY(1.4) skewX(-10deg);
    color: var(--black);
}

/* Right side group (Big number + Cents) */
.price-value-group {
    display: flex;
    align-items: flex-start;
}

/* The Big Number (R$ 35,) */
.price-main {
    font-size: 6rem; /* 36px based on your 6px rem */
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    text-shadow: 1px 1px 0px #29b274, 3px 3px 6px rgba(0,0,0,0.2);
    transform:scaleY(1.4) skewX(-10deg);
    color: var(--black);
    text-align: center;
}

/* The Top-Aligned Cents */
.price-cents {
    font-size: 2rem; /* 12px based on your 6px rem */
    font-weight: bold;
    margin-top: 0.4rem; /* Adjusts the "float" height */
    text-shadow: 1px 1px 0px #29b274, 3px 3px 6px rgba(0,0,0,0.2);
    transform:scaleY(1.4) skewX(-10deg);
    color: var(--black);
}

.price-main.at-sight{
    font-size: 2rem;
    color: var(--gray-inter);
    letter-spacing: normal;
    text-shadow: 1px 1px 0px var(--gray-inter), 3px 3px 6px rgb(73, 80, 87,0.1);
     text-shadow: none;
}



/* ----------------------- SECTIONS ----------------------- */

/* ------ NAVBAR ------ */

.navbar {
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn-container {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* ------ HERO SECTION ------ */


.eyebrow-container{
    display: flex;
    align-items: center;
}

.hero-eyebrow-banner {
    display: flex;
    justify-content: center;
    background-color:var(--white);
    font-size: var(--text-h5);
    color: var(--white);
    padding: 0rem 0;
    text-align: center; 
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    /* z-index: 1000; Keeps it above everything else */
}


.hero-eyebrow-banner .highlight {
    /* background-color:#00BD7C;  */
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 0.8rem;
    font-size: var(--text-h5);
    font-weight: var(--font-weight-extra-bold);
    margin-left: 1rem;
    border: 1px solid var(--secondary-tint);
}

.rating-container {
  display: flex;
  align-items: center; /* Vertically aligns numbers and stars */
  gap: 1rem;
  font-family: 'Outfit', sans-serif;
  margin: 0rem 0;
}

/* --- The Number (4,9) --- */
.rating-score {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1F2937; /* Dark Charcoal from your brand palette */
  letter-spacing: -1px;
  transform: translateY(1px);
}

.brand-rating-lockup {
  display: inline-flex;
  align-items: center; /* Keeps them perfectly centered vertically */
  gap: 1rem;           /* Space between image and stars */
}

/* THE SECRET: Define a height here, and both will follow it */
.brand-image {
  height: 7rem;       /* Match this exactly to your .star-icon height */
  width: auto;        /* Keeps the image's original proportions */
  display: block;
  transform: translateY(-2px);
}

.stars-image{
  height: 2.5rem;       /* Match this exactly to your .star-icon height */
  width: auto;        /* Keeps the image's original proportions */
  display: block;
  transform: translateY(1px);
}

.star-group {
  display: flex;
  gap: 1px;
}

/* 1. Base Styles (Mobile First - applies to everyone by default) */
.mobile-only {
    display: inline-block; /* Mobile version is visible by default */
    font-size: var(--text-paragraph);    /* Smaller font for small screens */
}

.desktop-only {
    display: none;         /* Desktop version is hidden by default */
}




.hero-section {
    /* 1. Background stays on the outer section to fill the screen */
    background: linear-gradient(rgba(253, 253, 253, 0.80), rgba(253, 253, 253, 0.80)), 
            url("/images/hero-logo.svg") center center repeat;
    /* 3. Remove flex from here so it doesn't squash the container */
    background-size:500px 500px;
    display: block;
}

.container.hero {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.heading.hero {
    color: var(--gray-sales-page);
    line-height: var(--line-height-tight);
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.hero-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    line-height: 0; 
    width: 95%;
    height: auto;
    /* border: 0.4rem solid rgb(87, 200, 229); */
    border-radius: 2rem; 
    align-items: center;
}

.hero-subheading {
    margin-bottom: 2rem;
    text-align: center;
    font-size: var(--text-h4);
    font-weight: 500;
    line-height: var(--line-height-normal);
    color: var(--gray-shade);
    letter-spacing: var(--letter-spacing-semi-tight);
}

.hero li {
    margin-bottom: 2rem;
    text-align: left;
    font-size: var(--text-h4);
    font-weight: 500;
    line-height: var(--line-height-tight);
    color: var(--gray-shade);
    letter-spacing: var(--letter-spacing-tight);
}

.heading-second-phrase{
    font-weight: var(--font-weight-normal);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  font-family: 'Outfit', sans-serif;
}

.benefit-item {
  display: flex;
  align-items: center; /* Keeps icon and text level */
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1e293b; /* Dark Slate for readability */
}

.check-circle {
  width: 5rem;  /* Slightly larger for the circle style */
  height: 5rem;
  color: #4BD295; /* Your Brand Green */
  flex-shrink: 0; /* Prevents icon from squishing on mobile */
}

.benefit-item span {
  line-height: 1.4;
}


/* ------ REVIEWS SECTION ------ */


.reviews-section{
    background-color: var(--tertiary-tint);
}

.heading.reviews {
    text-align: center;
}


.sub-heading.reviews {
    text-align: center;
}

.container.reviews {
    display: flex;
    flex-direction: column;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
    text-align: left;
}

.reviews-grid-container {
    display: flex;
    flex-wrap: wrap;       /* Allows stacking on mobile */
    justify-content: center;
    gap: 12rem;            /* Keep your 90px gap */
    margin: 3rem 0 12rem 0;
}

.reviews-flex-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* 30px gap */
}


.reviews-grid-container h3{
    color:var(--gray-shade);
    font-family: var(--font-family);
    letter-spacing: normal;
    padding-bottom: 3rem;
    text-align: center;
}


.testimonial-card {
    position: relative;
    flex: 0 1 300px; /* It won't grow past 450px, but can shrink */
    /* This ensures that if the 3rd card drops down, it stays 450px wide */
    max-width: 450px;     /* Prevents them from getting too wide */
    border-radius: 2rem;
    background-color: var(--white); 
    padding: 5rem 4rem 7rem;
}

/* Use ONE set of rules for the images/text */
.testimonial-card .img1 {
    position: absolute;
    top: 2rem;
    left: 2rem;
    height: 5rem;
    width: auto;
    z-index: 1;
    color: var(--secondary-base);
}

.testimonial-card .img2 {
    position: absolute;
    bottom: -7rem;
    right: 3rem;
    height: 14rem;
    width: 14rem;
    border-radius: 50%; 
    border: 0.7rem solid var(--secondary-base);
    object-fit: cover;
    background-color: var(--white);
    z-index: 2;
}

.testimonial-card h3 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: rgb(239,72,0);
}

.testimonial-card p {
    font-style: italic; 
    font-size: var(--text-paragraph);
    color: var(--gray-shade);
    padding-top: 0.50rem;
    padding-bottom: 1.50rem;
}

.testimonial-card h3 {
    color: var(--gray-shade);
    padding-top: 2rem;
    padding-bottom: 2rem;
    letter-spacing: var(--letter-spacing-tight);
}

    
.testimonial-credentials{
    display: flex;
    flex-direction: row;
    gap:2rem;
    align-items: center;
    padding-bottom: 0rem;
}

.reviews-video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    border-radius: 1.5rem; /* 9px */
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.5);
    text-align: center;
    background-color:#f0ece7;
}

.reviews-video-container h4{
    display: flex;
    align-items: center; /* This centers the text vertically within that space */
    justify-content: center; /* Optional: centers the text horizontally */
    margin-bottom: 15px;
    color:var(--tertiary-base);
    font-style: italic;
    font-family: var(--font-family);
    letter-spacing: normal;
    padding-bottom: 0.5rem;
}

.reviews-video {
    width: 100%;       /* Makes the video fit the container width */
    max-width: 100%;   /* Ensures it never overflows on mobile */
    height: auto;      /* Keeps the original shape (ratio) */
    border-radius: 1rem;
    display: block;
    /*margin-bottom: 2rem;*/
}

.review-video-caption {
    font-size: 2.5rem; /* 15px */
    color: #444;
    line-height: 1.4;
}

.review-rating-box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the stars and text */
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

/* 1. The Container must be 'relative' so the button stays inside it */
.video-placeholder {
    position: relative; 
    display: inline-block;
    width: 100%;
    max-width: 400px; /* Matches your image width */
    cursor: pointer;
    background-color: #000; /* Fallback color */
    border-radius: 8px;
    overflow: hidden;
    margin-top:auto;
}

.video-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.8; /* Dim the image slightly */
    transition: opacity 0.3s;
}

.video-placeholder:hover img {
    opacity: 1;
}

/* 2. The Image must be 'block' to prevent weird spacing at the bottom */
.video-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.9; /* Slightly dim it so the white button pops */
}

/* 3. The Play Button Overlay */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers it perfectly */
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent circle */
    border: 3px solid #fff; /* White border */
    border-radius: 50%;
    z-index: 10; /* Ensures it sits ON TOP of the image */
}

/* 4. The White Triangle inside the button */
.play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%; /* Nudge right to look visually centered */
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px; /* Creates the triangle shape */
    border-color: transparent transparent transparent #fff;
}

.stars {
    color:#c59d08; /* Bright Gold */
    font-size: 5rem;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
    padding-bottom: 1.5rem;
}

/* ------ BENEFITS SECTION ------ */

.benefits-section {
    display: block;
    background-color: var(--white);
}

.container.benefits {
    /* 1. This uses your existing .container logic (max-width 1200px, etc.) */
    /* 2. Centering the content inside the hero */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading.benefits {
    text-align: center;
}

/* 1. Base Styles (Mobile First) */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr; /* One column: they stack automatically */
    gap: 3rem;
    /* padding: 3rem; */
}

.benefit-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: #fff;
    padding: 5rem;
    border-radius: 2rem;
    border: 1px solid var(--secondary-base); /* Subtle border for the "Inverted" look */
    transition: transform 0.3s ease;
}

.benefit-card h3{
    margin-bottom: 1rem;
}

.benefit-icon {
    width: 6rem;  /* Slightly smaller looks better without the circle */
    height: 6rem;
    margin: 0 auto 3rem; 
    display: block; 
    
    /* Removed: padding, background, border-radius, and border */
    
    transition: all 0.3s ease;
    color: var(--secondary-base);
}


.container.benefits ul li {
    margin: 0 0 10rem 0;
    background: url("../images/arrow.png") 25px center no-repeat;
    background-size: 25px; 
    background-position: 1rem 1rem; 
    padding: 1rem 1rem 0rem 8rem;
    display: block;
    margin:0 0 1rem 0;
    font-size: var(--text-h5);
    line-height: var(--line-height-tight);
}



/* ------ INSTRUCTOR ------ */

.instructor-section{
    background-color: var(--tertiary-tint);
}

.heading.instructor{
    text-align: center;
}

.container.instructor {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.instructor-sub-heading {
    text-align: center;
}

.instructor-card {
    background: var(--white); /* Ou a cor de fundo da sua LP */
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 800px;
    margin: 20px auto;
}

.instructor-container {
    display: flex;
    flex-direction: column; /* Mobile: Foto em cima */
    align-items: center;
    text-align: center;
    gap: 20px;
}

.instructor-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Círculo */
    object-fit: cover;
    border: 3px solid var(--secondary-base); /* Cor destaque para o círculo */
}

.instructor-label {
    text-transform: uppercase;
    font-size: var(--text-h4);
    font-weight: bold;
    color: #007bff;
    letter-spacing: normal;
    display: block;
    margin-bottom: 5px;
}

.instructor-name {
    margin: 0;
    color: #333;
}

.instructor-title {
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.instructor-bio {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 500px;
}




/* ------ CTA SECTION ------ */

.heading.cta {
    text-align: center;
}

.cta-sub-heading {
    text-align: center;
    color: var(--gray-base);
    margin-bottom: 3rem;
    font-size: var(--text-h3);
    letter-spacing: var(--letter-spacing-semi-tight);
    text-transform: none;
}

.cta-container {
    display: flex;
    flex-direction: column;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
}

.cta-img {
    max-width: 100%;
    line-height: 0; 
    width: 95%;
    height: auto;
    padding: 2rem;
}

.cta-img img{
    max-width: 100%;
    line-height: 0; 
    width: 100%;
    height: auto;
    border-radius: 2rem;
}

.cta-btn-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.btn-redirection-message.cta{
    color: var(--gray-base);
}
.cta-trust-badge{
    display: flex;
    align-items: center;
    max-width: 100%;
}

.cta-trust-badge img{
    width: 50%;
    
}


.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color:var(--white);
    border: 2px solid var(--gray-shade); 
    padding: .5rem 1.5rem;
    border-radius: 12px;
    max-width: 500px; /* Slightly wider to accommodate larger font */
    margin: 6rem auto 3rem auto;
    box-shadow: 0 4px 15px rgba(var(--gray-shade), 0.15); 
}

.badge-icon svg {
    width: 10.5rem;
    height: 10.5rem;
    color:var(--gray-base); /* Darker "Dark Goldenrod" for better contrast */
    filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.1));
}

.badge-text strong {
    font-size: 2.2rem; /* Big and bold */
    color: rgba(var(--gray-shade), 0.15); /* Deep golden-brown text instead of harsh black */
    line-height: 1.1;
    display: block;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.badge-text span {
    font-size: 1.6rem;
    color: var(--gray-shade); /* Muted gold-brown */
    font-weight: 500;
    text-transform: uppercase; /* Adds a bit of "official" flair */
    letter-spacing: 0.5px;
}


.trust-badge-note{
    display:flex;
    align-items: center;
    font-size: var(--text-base);
    color: var(--gray-shade);
}

.trust-badge-note.cta{
    font-size: var(--text-base);
    color: var(--gray-shade);
}

.brand-image.cta{
  height: 5rem;     
  transform: translateY(-2px);
}


/* ------ FOOTER ------ */

.footer-section {
    display:block;
    background-color:#E8ECEF;   
    border-top: 1px solid var(--primary-shade); 
    color: var(--gray-inter);
}

.container.footer{
    display: flex;
    flex-direction: column;
    column-gap: 5rem;
    justify-items: center;
    align-items: center;
    text-align: center; 
    padding: 8rem 3rem;
}

.footer-disclaimer{
    display: flex;
    flex-direction: column;
    text-align: left; 
}

.footer-disclaimer.margin{
    margin-bottom: 3rem;
}

.social-icons-container {
    display: flex;
    gap: 1.5rem;
}

.footer-links-container {
    display: flex;
    gap: 1rem;
}

.footer-links-container a{
     color: var(--secondary-shade);
}

.footer-links-container ul{
    display: flex;
    gap: 2rem;
}
.social-icons {
    width: 20px;
}

.heart-icon {
    color: var(--secondary-base);
}

/* =========================================
    MEDIA QUERIES
   ========================================= */

/* XS - PHONE PORTRAINT:  < 576px */

@media (min-width: 544px) {
    /* 530px / 16px = 34rem */
    /* 34rem x 16px = 544px */

    html {
        font-size: 43.75%;
        /* 7px / 16px = 43.75% */
    }

    /* .hero-heading-break {
        display: none;
    } */

    .hero-section {
        height: auto;
    }


    /* 2. Tablet & Desktop "Upgrade" (Screens 481px and wider) */
    .mobile-only {
        display: none;      /* Hide the mobile version now */
    }
    
    .desktop-only {
        display: inline-block; /* Show the full text */
        font-size: var(--text-paragraph);    /* Scale up the font for more room */
    }

    .cta-card {
        padding: 8rem 6rem;
    }
}

/* SM - PHONE LANDSCAPE: 576px - 768px */

@media (min-width: 688px) {
    /* 680px / 16px = 43rem */
    /* 43rem x 16px = 688px */

    html {
        font-size: 50%;
        /* 8px / 16px = 50% */
    }

    .cta-card {
        padding: 8rem 16rem;
    }

    .reviews-grid-container{
        grid-template-columns: 1fr 1fr;
    }
}


/* MD - TABLETS: 768px - 1024px */

@media (min-width: 816px) {
    /* 815px / 16px = 51rem */
    /* 51rem x 16px = 816px */

    html {
        font-size: 56.25%;
        /* 9px / 16px = 56.25% */
    }

    /* 2. Desktop "Upgrade" (2x2 Grid) */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* Two equal columns */
        gap: 5rem;
        max-width: 1100px;
        margin: 0 auto; /* Centers the whole grid */
    }

    .testimonial-card {
        padding: 2rem 4rem 6rem;        
    }
    
    .testimonial-card {
        min-width: 300px;     /* Prevents them from getting too skinny */
    }

    .hero-img {
        width: 60%;
    }

}

/* LG - SMALL LAPTOPS: 1024px - 1280px */

@media (min-width: 1152px) {
    /* 1150px / 16px = 72rem */
    /* 72rem x 16px = 1152px */

    html {
        font-size: 62.5%;
        /* 10px / 16px = 62.5% */
    }

    .cta-section {
        margin-bottom: 8rem;
    }
}





