@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'ITC Avant Garde Gothic';
    src: url('../assets/font/itc_avant_garde/ITC Avant Garde Gothic Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic';
    src: url('../assets/font/itc_avant_garde/ITC Avant Garde Gothic Medium.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic';
    src: url('../assets/font/itc_avant_garde/ITCAvantGardeStd-Bk.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

h1 {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-weight: 700;
}


h2 {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-weight: 600;
}

h3 {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-weight: 600;
}

h4 {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-weight: 600;
}

a {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-weight: 400;
}

span {
    font-family: 'ITC Avant Garde Gothic Regular', sans-serif;
}

p {
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-weight: 400;
}

:root{

    --btn-color: #000000;/* button color*/
    --btn-bg: #ffdad2;/* button bg color*/

    --primary-text-color: #ffdad2;
    --header-link-hover: #ffdad2;
    --input-hover-bd-color: #ffdad2;
}


html {
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

header{
    /* background-color: #fff;
    color: #000; */
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

/* Glass header compartido (copiado desde index.html) */
.glass-header {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-radius: 20px;
    margin: 14px auto 0;
    width: min(1180px, calc(100% - 24px));
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
     position: relative;
        z-index: 10;
}

/* Ajustes responsivos para glass-header (coincidentes con index.html) */
@media (max-width: 768px) {
    .glass-header { border-radius:16px; padding:0 12px; padding-right: 60px; }
}

.animated-collapse{
    transition: width 0.3s ease;
}

/* Removed gradient background */

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 10px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
}


.header-links:hover {
    color: var(--header-link-hover);
}

.primary-text-color{
    color: var(--primary-text-color);
}

/* Removed gradient text */

.hero-section{
    background-image: url("../assets/images/background/dots.svg");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

/* Removed hero background gradient */

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 24px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover{

}

.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 25px;
    /* outline: none; */
    min-width: 100px;
    border: 2px solid #818080;
    /* transition: border 0.3s; */
}

.input:active, .input:focus, .input:focus-within{
    border: 2px solid var(--input-hover-bd-color);
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}
  
.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}
  
.carousel-img {
    display: inline-block;
    margin: 0 20px;
}
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-link{
    transition: color 0.3s;
    color: #000000;
}


.review-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.review-card{
    box-shadow: 0px 2px 4px #757474a0;
    border-radius: 15px;
    /* width: 200px; */
    /* height: 550px; */
    padding: 10px;
}

/* --------- collapsible div ---------- */
.collapsible {
    background-color: #f3f0f0;
    color: #2b2929;
    /* cursor: pointer; */
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

/* Style for the collapsible content */
.content {
    padding: 0 18px;
    /* display: none; */
    height: 0px;
    overflow: hidden;
    background-color: transparent;
    transition: height 0.5s;
    text-align: justify;
    margin-top: 10px;
}

.collapsible .active,
.collapsible:hover {
    /* background-color: #dedddd; */
}

.section-title {
  color: rgb(144, 75, 59);
  font-family: 'ITC Avant Garde Gothic Medium', sans-serif;
}

.section-subtitle {
    color: #7eb972;
    font-family: 'ITC Avant Garde Gothic', sans-serif;
}

/* Emphasis for inline text — asegura color y peso de fuente */
.text-emphasis {
    /*color: #904b3b;*/
    font-family: 'ITC Avant Garde Gothic', sans-serif;
    font-weight: 700 !important;
}

.feature-section-icon{
    color: #7eb972;
}

/* Pricing Section */
.pricing-card {
    border: 1px solid #333a44;
    border-radius: 0.75rem; /* matches rounded-lg */
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
    background: #fff;
}

@media (max-width: 1023px) {
    body.menu-open .glass-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #ffffffff !important;
        box-shadow: none;
    }
}

@media not all and (min-width: 1024px) {
    .collapsible-header {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 18px;

        width: 0;
        height: 100dvh;
        min-height: 100dvh;

        padding: 24px 18px;
        overflow-y: auto;
        overflow-x: hidden;

        opacity: 0;
        visibility: hidden;

        background: #ffffff;
        color: #1f2937;

        box-shadow: 2px 0 18px rgba(0,0,0,0.12);
        transition: width 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
        z-index: 9999;
    }

    header > .collapsible-header.open {
        width: min(78vw, 380px);
        opacity: 1;
        visibility: visible;
        background: #ffffff;
        z-index: 99999 !important;
    }


    header > .collapsible-header .top-nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 2;
    }

    header > .collapsible-header .header-links,
    header > .collapsible-header .outline-btn {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 12px 8px;
        color: #1f2937;
        text-decoration: none;
        background: transparent;
        border-radius: 10px;
    }

    header > .collapsible-header .header-links:hover,
    header > .collapsible-header .outline-btn:hover {
        background: rgba(144, 75, 59, 0.08);
        color: #904b3b;
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }

/* Pricing: ensure check icons are green even if Tailwind utilities are purged */
#pricing .pricing-card .bi-check-circle-fill {
    color: #16a34a !important; /* Tailwind green-600 */
}

/* Pricing: use the same green for the patient count text */
#pricing .pricing-card .section-subtitle {
color: #16a34a !important;
font-weight: 700;
}