@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Regular Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Medium Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Bold Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Ultra.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Ultra Italic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Black.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Black Italic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Light Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gordita';
    src: url('assets/fonts/gordita/Gordita Thin Italic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/*
 * Breakpoints — todas as @media estão no fim do arquivo (secção "Responsive"),
 * nesta ordem: min 1920 (FHD+) → 1600+993 (HD) → 1366 → … → min 1101px (no fim).
 * Várias regras podem aplicar ao mesmo tempo; em max-width iguais, a última vence.
 */

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

body {
    font-family: 'Gordita', sans-serif;
    color: #ffffff;
    background-color: #01232f;
    /* Master background updated to requested color */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 50px 0;
    /* Increased header height */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Setup */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-sub {
    font-size: 7px;
    letter-spacing: 1px;
    font-family: 'Gordita', sans-serif;
    opacity: 0.8;
    margin-top: 2px;
    color: #E64E44;
    /* matching the icon */
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Gordita', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: #ffffff;
    font-size: 18px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-decoration: none;
    border-radius: 50%;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #ffffff;
    z-index: 120;
}

.mobile-menu-toggle .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 7, 20, 0.65);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
    background-color: rgba(255, 255, 255, 0.22);
    color: #E64E44;
    outline: none;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 400px);
    height: 100%;
    max-height: 100dvh;
    z-index: 260;
    background: #012431;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    padding: 100px 28px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-panel.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Gordita', sans-serif;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    color: #E64E44;
    padding-left: 6px;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-social {
    justify-content: center;
}

.mobile-social a {
    width: 44px;
    height: 44px;
    font-size: 20px;
}

.btn-whatsapp-mobile {
    width: 100%;
    justify-content: center;
    max-width: 100%;
    padding: 14px 20px;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .header {
    z-index: 270;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Gordita', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn i {
    margin-right: 8px;
    font-size: 16px;
}

.btn-whatsapp {
    background-color: #55b244;
    color: #ffffff;
    padding: 10px 20px;
}

.btn-whatsapp:hover {
    background-color: #499a3a;
}

.btn-primary {
    background: linear-gradient(90deg, #FF6F61 0%, #E64E44 100%);
    color: #ffffff;
    padding: 16px 40px;
    font-family: 'Gordita', sans-serif;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(230, 78, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 78, 68, 0.4);
}

/* Hero CTA: sem transition em opacity (evita conflito com GSAP na entrada) */
.hero-content>.btn.btn-primary {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 105vh;
    display: flex;
    align-items: center;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Optional Overlay for contrast (depends on image, but safe to add subtle gradient on left) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 7, 20, 0.6) 0%, rgba(0, 7, 20, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    padding-top: 60px;
    /* Espaço extra para o CTA não ficar sob o .page-content (z-index maior + margin negativo) */
    padding-bottom: clamp(64px, 9vh, 120px);
    /* Offset to center vertically properly considering header */
}

/* Typography for Hero */
.subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.main-heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 45px;
    font-weight: 400;
    font-family: 'Gordita', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Content Wrapper */
.page-content {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    /* Lower the block over the Hero background */
    background-color: transparent;
    /* Allow body background and hero background to show through */
}

/* About Card Container */
.about-card-container {
    max-width: 98vw;
    width: 98vw;
    margin: 0 auto;
    border-radius: 80px;
}

.shape-divider {
    width: 100%;
}

.shape-divider img {
    display: block;
    width: 100%;
    border-radius: 28px 28px 0 0;
}

.about-card-content {
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 28px 28px;
    margin-top: -132px;
    /* Sweeping curved bottom corners */
    padding-bottom: 150px;
    /* Increased height to allow CTA overlap */
}

/* About Section */
.about-section {
    padding: 18px 0 24px;
    color: #333333;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    width: 48%;
    flex: none;
}

.about-text {
    width: 48%;
    flex: none;
}

.about-image img {
    width: 100%;
    transform-origin: left center;
    height: auto;
    /* remove border-radius and box-shadow as requested */
}


.section-title {
    font-size: 42px;
    font-family: 'Gordita', sans-serif;
    font-weight: 300;
    color: #444444;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.section-title .text-bold {
    font-weight: 800;
    color: #1a1a1a;
}

.section-title .text-red {
    color: #E64E44;
}

.about-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 35px;
    font-family: 'Gordita', sans-serif;
    font-weight: 400;
    opacity: 0.9;
}

.btn-about {
    padding: 14px 30px;
    font-size: 15px;
}

/* CTA Mid Section */
.cta-mid-section {
    padding: 0 0 60px;
    margin-top: -100px;
    /* Pulls CTA Mid upwards to overlap the white card */
    position: relative;
    z-index: 20;
    /* Ensures it renders above the white card */
}

.cta-mid-banner {
    background-image: url('assets/cta-mid-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    max-width: 1440px;
    /* Um pouco maior que o container padrão de 1300px */
    width: 95vw;
    margin: 0 auto;
}

/* Gradient Overlay for CTA Mid */
.cta-mid-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.cta-container {
    width: 100%;
}

.cta-mid-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* Increased to allow 3 long lines */
}

.cta-mid-content h2 {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.cta-mid-content h2 strong {
    font-weight: 800;
}

.btn-cta {
    padding: 16px 30px;
    font-size: 14px;
}

/* Lens Products Section */
.lens-products-section {
    padding: 12px 0 18px;
    position: relative;
    z-index: 10;
}

.products-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: min(5vw, 56px);
    row-gap: 0;
    align-items: start;
}

.products-text {
    display: contents;
}

.products-text-main {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.icon-box {
    margin-bottom: 30px;
}

.icon-box img {
    width: 74px;
    max-width: 100%;
    height: auto;
    display: block;
}

.products-text-main h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.products-text-main p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    font-family: 'Gordita', sans-serif;
    color: rgba(255, 255, 255, 0.9);
}

.btn-products {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    align-self: start;
    margin-top: 28px;
    padding: 15px 35px;
    font-size: 14px;
}

.products-visual {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-self: end;
    width: 100%;
    max-width: 480px;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.product-card-bg {
    margin-top: 0;
    width: 100%;
    max-width: 480px;
    background: none;
    padding: 0;
    border-radius: 0;
    position: relative;
    height: auto;
}

.product-card-bg::after {
    content: none;
    display: none;
}

.product-card-bg img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Bottom Divider Line */
.section-divider {
    width: 100%;
    max-width: 450px;
    height: 1px;
    margin: 100px auto 20px;
    background-color: #E64E44;
    opacity: 0.8;
}

/* Bottom Pattern Background */
.bottom-pattern-bg {
    position: relative;
    z-index: 12;
    /* Ajuste fino: define onde o pattern começa verticalmente */
    --pattern-start-offset: 463px;
    padding-bottom: 50px;
}

.bottom-pattern-bg::before {
    content: '';
    position: absolute;
    top: var(--pattern-start-offset);
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('assets/page-bg.png');
    background-repeat: repeat;
    background-size: auto;
    pointer-events: none;
    z-index: 0;
}

.bottom-pattern-bg>* {
    position: relative;
    z-index: 1;
}

/* Ophthalmic Lenses Section */
.ophthalmic-section {
    padding: 18px 0 48px;
}

/* Cartão branco alinhado ao .about-card-content (98vw); conteúdo no .container normal */
.ophthalmic-card {
    width: 98vw;
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 28px;
    padding: 24px 0;
}

.ophthalmic-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ophthalmic-text {
    width: 48%;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ophthalmic-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #012431;
    margin-bottom: 24px;
    margin-top: 0;
}

.ophthalmic-text p {
    font-size: 15px;
    font-family: 'Gordita', sans-serif;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 35px;
}

.ophthalmic-models {
    width: 48%;
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.models-border-wrapper {
    position: relative;
    width: 100%;
    max-width: 516px;
    height: 486px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.bg-border-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.models-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    padding: 36px;
    box-sizing: border-box;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.model-item {
    display: grid;
    grid-template-columns: minmax(0, 148px) auto;
    align-items: center;
    gap: 20px;
    min-width: 0;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.model-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.model-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.model-item .model-logo {
    max-width: 100%;
    max-height: 52px;
    height: auto;
    object-fit: contain;
}

.model-item .model-image {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 84px;
    height: auto;
    object-fit: contain;
}

.model-ocupacional .model-image {
    max-height: 120px;
}

/* Exclusive Section */
.exclusive-section {
    padding: 60px 0 100px;
}

.exclusive-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.exclusive-text {
    width: 48%;
    flex: none;
}

.exclusive-text h2 {
    font-size: 46px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.exclusive-text h2 strong {
    font-weight: 800;
    display: block;
}

.exclusive-text h2 .text-red {
    color: #E64E44;
}

.exclusive-text p {
    font-size: 15px;
    font-family: 'Gordita', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn-exclusive {
    padding: 16px 35px;
    font-size: 14px;
}

.exclusive-visual {
    width: 48%;
    flex: none;
    display: flex;
    justify-content: flex-end;
}

.exclusive-image-box {
    width: 100%;
    max-width: 550px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.exclusive-image-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.15);
}

/* CTA Bot Section */
.cta-bot-section {
    position: relative;
    z-index: 20;
    margin-bottom: -150px;
}

.cta-bot-card {
    background-image: url('assets/cta-bot-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-bot-text {
    max-width: 650px;
}

.cta-bot-text h2 {
    font-size: 38px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.cta-bot-text h2 strong {
    font-weight: 800;
}

.btn-cta-bot {
    padding: 16px 40px;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-wrapper {
    background-color: #ffffff;
    border-radius: 60px;
    padding: 182px 0 24px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Pattern do formulário: canto inferior direito alinhado ao border-radius do card */
.testimonials-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(96vw, 824px);
    height: min(75vh, 760px);
    min-height: 632px;
    background-image: url('assets/form-pattern.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    border-radius: 0 0 60px 0;
    pointer-events: none;
    z-index: 0;
}

.testimonials-wrapper>section {
    position: relative;
    z-index: 1;
}

.testimonials-section {
    overflow: hidden;
}

.testimonials-swiper {
    padding-bottom: 100px;
    /* Espaço extra para as bolinhas abaixo dos slides */
}

.testimonial-card {
    background-color: #ffffff;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h3 {
    font-size: 22px;
    font-weight: 300;
    color: #012431;
    margin-bottom: 5px;
}

.testimonial-info p.role {
    font-size: 15px;
    font-weight: 800;
    color: #E64E44;
}

.testimonial-text {
    font-size: 14px;
    font-family: 'Gordita', sans-serif;
    color: #555555;
    line-height: 1.7;
}

/* Swiper — depoimentos: bolinhas na cor primária, mais abaixo do carrossel */
.testimonials-swiper .swiper-pagination {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    margin-top: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    background-color: #E64E44;
    opacity: 0.28;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background-color: #E64E44;
    opacity: 1;
    transform: scale(1.2);
}

/* Contact Form Section */
.contact-section {
    position: relative;
    padding: 32px 0;
    margin-top: 5rem;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-text {
    width: 48%;
    flex: none;
}

.contact-text h2 {
    font-size: 50px;
    font-weight: 300;
    color: #012431;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.contact-text h2 strong {
    font-weight: 800;
}

.contact-form-box {
    width: 48%;
    flex: none;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(1, 36, 49, 0.08);
    padding: 32px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #012431;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    background-color: #f5f5f5;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 15px;
    font-family: 'Gordita', sans-serif;
    color: #333333;
    outline: none;
    transition: background-color 0.3s ease;
}

.form-group input::placeholder {
    color: #a0a0a0;
}

.form-group input:focus {
    background-color: #ebebeb;
}

.btn-submit {
    display: inline-block;
    width: auto;
    margin-top: 10px;
}

/* Footer Section */
.site-footer {
    background-color: transparent;
    /* lets body #01232f show through */
    color: #ffffff;
    padding-top: 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col p {
    font-size: 12px;
    line-height: 1.5;
    text-align: justify;
    font-family: 'Gordita', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
    flex: 0.8;
}

.footer-logo-main,
.footer-logo-cecop {
    width: 160px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-bottom {
    background-color: #00161f;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #4a8f9c;
    font-family: 'Gordita', sans-serif;
    margin: 0;
}

/* ========== Responsive: FHD+ → 1600/993 → 1366 → … → min 1101px ========== */

/* FHD+ (≥1920px): escala sobre o base — ajusta só --fhd */
@media (min-width: 1920px) {
    :root {
        --fhd: 1.24;
    }

    .container {
        max-width: calc(1300px * var(--fhd));
        padding: 0 calc(40px * var(--fhd));
    }

    .header {
        padding: calc(50px * var(--fhd)) 0;
    }

    .logo-text {
        font-size: calc(32px * var(--fhd));
    }

    .logo-sub {
        font-size: calc(7px * var(--fhd));
    }

    .main-nav a {
        font-size: calc(14px * var(--fhd));
    }

    .main-nav ul {
        gap: calc(35px * var(--fhd));
    }

    .header-actions {
        gap: calc(20px * var(--fhd));
    }

    .social-links {
        gap: calc(15px * var(--fhd));
    }

    .btn {
        padding: calc(12px * var(--fhd)) calc(24px * var(--fhd));
        font-size: calc(14px * var(--fhd));
    }

    .btn-primary {
        padding: calc(16px * var(--fhd)) calc(40px * var(--fhd));
        box-shadow: 0 calc(8px * var(--fhd)) calc(20px * var(--fhd)) rgba(230, 78, 68, 0.3);
    }

    .btn-whatsapp {
        padding: calc(10px * var(--fhd)) calc(20px * var(--fhd));
    }

    .btn i {
        margin-right: calc(8px * var(--fhd));
        font-size: calc(16px * var(--fhd));
    }

    .hero-content {
        max-width: calc(650px * var(--fhd));
        padding-top: calc(60px * var(--fhd));
        padding-bottom: clamp(calc(64px * var(--fhd)), 9vh, calc(120px * var(--fhd)));
    }

    .subtitle {
        font-size: calc(13px * var(--fhd));
        margin-bottom: calc(30px * var(--fhd));
    }

    .main-heading {
        font-size: calc(46px * var(--fhd));
        margin-bottom: calc(25px * var(--fhd));
    }

    .description {
        font-size: calc(16px * var(--fhd));
        margin-bottom: calc(45px * var(--fhd));
    }

    .page-content {
        margin-top: calc(-100px * var(--fhd));
    }

    .about-card-container {
        border-radius: calc(80px * var(--fhd));
    }

    .shape-divider img {
        border-radius: 28px 28px 0 0;
    }

    .about-card-content {
        border-radius: 0 0 28px 28px;
        margin-top: calc(-132px * var(--fhd));
        padding-bottom: calc(122px * var(--fhd));
    }

    .about-section {
        padding: calc(60px * var(--fhd)) 0 calc(80px * var(--fhd));
    }

    .section-title {
        font-size: calc(42px * var(--fhd));
        margin-bottom: calc(25px * var(--fhd));
    }

    .about-desc {
        font-size: calc(16px * var(--fhd));
        margin-bottom: calc(35px * var(--fhd));
    }

    .btn-about {
        padding: calc(14px * var(--fhd)) calc(30px * var(--fhd));
        font-size: calc(15px * var(--fhd));
    }

    .cta-mid-section {
        padding: 0 0 calc(60px * var(--fhd));
        margin-top: calc(-100px * var(--fhd));
    }

    .cta-mid-banner {
        border-radius: calc(30px * var(--fhd));
        padding: calc(60px * var(--fhd)) 0;
        max-width: calc(1440px * var(--fhd));
    }

    .cta-mid-content {
        max-width: calc(800px * var(--fhd));
    }

    .cta-mid-content h2 {
        font-size: calc(32px * var(--fhd));
        margin-bottom: calc(30px * var(--fhd));
    }

    .btn-cta {
        padding: calc(16px * var(--fhd)) calc(30px * var(--fhd));
        font-size: calc(14px * var(--fhd));
    }

    .lens-products-section {
        padding: calc(12px * var(--fhd)) 0 calc(48px * var(--fhd));
    }

    .icon-box {
        margin-bottom: calc(30px * var(--fhd));
    }

    .icon-box img {
        width: calc(74px * var(--fhd));
    }

    .products-text-main h2 {
        font-size: calc(42px * var(--fhd));
        margin-bottom: calc(20px * var(--fhd));
    }

    .products-text-main p {
        font-size: calc(15px * var(--fhd));
    }

    .btn-products {
        margin-top: calc(28px * var(--fhd));
        padding: calc(14px * var(--fhd)) calc(64px * var(--fhd));
        font-size: calc(14px * var(--fhd));
    }

    .product-card-bg {
        max-width: calc(560px * var(--fhd));
    }

    .products-visual {
        max-width: calc(560px * var(--fhd));
    }

    .product-card-bg::after {
        content: none;
        display: none;
    }

    .product-card-bg img {
        width: 100%;
    }

    .section-divider {
        max-width: calc(450px * var(--fhd));
        margin: calc(100px * var(--fhd)) auto calc(20px * var(--fhd));
    }

    .bottom-pattern-bg {
        --pattern-start-offset: calc(358px * var(--fhd));
        padding-bottom: calc(50px * var(--fhd));
    }

    .ophthalmic-section {
        padding: calc(18px * var(--fhd)) 0 calc(32px * var(--fhd));
    }

    .ophthalmic-card {
        border-radius: 28px;
        padding: calc(32px * var(--fhd)) 0;
    }

    .ophthalmic-text h2 {
        font-size: calc(42px * var(--fhd));
        margin-bottom: calc(24px * var(--fhd));
    }

    .ophthalmic-text p {
        font-size: calc(15px * var(--fhd));
        margin-bottom: calc(35px * var(--fhd));
    }

    .models-border-wrapper {
        max-width: calc(572px * var(--fhd));
        height: calc(482px * var(--fhd));
        overflow: visible;
    }

    .models-grid {
        gap: calc(24px * var(--fhd));
        padding: calc(12px * var(--fhd));
        overflow: visible;
    }

    .model-item {
        grid-template-columns: minmax(0, calc(178px * var(--fhd))) auto;
        gap: calc(22px * var(--fhd));
    }

    .model-item .model-logo {
        max-height: calc(104px * var(--fhd));
        aspect-ratio: 165/70;
        width: 85%;
    }

    /* Largura máxima explícita em FHD (evita 100% da coluna esticar em demasia) */
    .model-item .model-image-wrapper {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        overflow: visible;
    }

    .model-item .model-image {
        display: block;
        width: 100%;
        height: auto;
        max-height: calc(248px * var(--fhd));
        object-fit: contain;
        object-position: center;
    }

    .model-ocupacional .model-image {
        max-height: calc(288px * var(--fhd));
    }

    .exclusive-section {
        padding: calc(60px * var(--fhd)) 0 calc(100px * var(--fhd));
    }

    .exclusive-text h2 {
        font-size: calc(46px * var(--fhd));
        margin-bottom: calc(30px * var(--fhd));
    }

    .exclusive-text p {
        font-size: calc(15px * var(--fhd));
        margin-bottom: calc(40px * var(--fhd));
    }

    .btn-exclusive {
        padding: calc(16px * var(--fhd)) calc(35px * var(--fhd));
        font-size: calc(14px * var(--fhd));
    }

    .exclusive-image-box {
        max-width: calc(550px * var(--fhd));
        height: calc(480px * var(--fhd));
        padding: calc(40px * var(--fhd));
    }

    .cta-bot-section {
        margin-bottom: calc(-150px * var(--fhd));
    }

    .cta-bot-card {
        border-radius: calc(40px * var(--fhd));
        padding: calc(80px * var(--fhd));
        max-width: calc(1200px * var(--fhd));
    }

    .cta-bot-text {
        max-width: calc(650px * var(--fhd));
    }

    .cta-bot-text h2 {
        font-size: calc(38px * var(--fhd));
        margin-bottom: calc(30px * var(--fhd));
    }

    .btn-cta-bot {
        padding: calc(16px * var(--fhd)) calc(40px * var(--fhd));
        font-size: calc(14px * var(--fhd));
    }

    .testimonials-wrapper {
        border-radius: calc(60px * var(--fhd));
        padding-top: calc(184px * var(--fhd));
        padding-bottom: calc(32px * var(--fhd));
    }

    .testimonials-wrapper::after {
        width: min(95vw, calc(792px * var(--fhd)));
        height: min(90vh, calc(760px * var(--fhd)));
        min-height: calc(480px * var(--fhd));
        border-radius: 0 0 calc(60px * var(--fhd)) 0;
    }

    .testimonials-swiper {
        padding-bottom: calc(100px * var(--fhd));
    }

    .testimonial-card {
        max-width: calc(400px * var(--fhd));
    }

    .testimonial-header {
        gap: calc(20px * var(--fhd));
        margin-bottom: calc(25px * var(--fhd));
    }

    .testimonial-avatar {
        width: calc(65px * var(--fhd));
        height: calc(65px * var(--fhd));
    }

    .testimonial-info h3 {
        font-size: calc(22px * var(--fhd));
    }

    .testimonial-info p.role {
        font-size: calc(15px * var(--fhd));
    }

    .testimonial-text {
        font-size: calc(14px * var(--fhd));
    }

    .testimonials-swiper .swiper-pagination-bullet {
        width: calc(10px * var(--fhd));
        height: calc(10px * var(--fhd));
        margin: 0 calc(6px * var(--fhd)) !important;
    }

    .contact-section {
        padding: calc(60px * var(--fhd)) 0 calc(32px * var(--fhd));
        margin-top: calc(5rem * var(--fhd));
    }

    .contact-text h2 {
        font-size: calc(50px * var(--fhd));
        margin-bottom: calc(30px * var(--fhd));
    }

    .contact-form-box {
        border-radius: calc(12px * var(--fhd));
        padding: calc(50px * var(--fhd));
        box-shadow: 0 calc(20px * var(--fhd)) calc(50px * var(--fhd)) rgba(1, 36, 49, 0.08);
    }

    .form-group {
        margin-bottom: calc(25px * var(--fhd));
    }

    .form-group label {
        font-size: calc(16px * var(--fhd));
        margin-bottom: calc(12px * var(--fhd));
    }

    .form-group input {
        border-radius: calc(50px * var(--fhd));
        padding: calc(18px * var(--fhd)) calc(25px * var(--fhd));
        font-size: calc(15px * var(--fhd));
    }

    .btn-submit {
        margin-top: calc(10px * var(--fhd));
    }

    .site-footer {
        padding-top: calc(80px * var(--fhd));
    }

    .footer-container {
        gap: calc(60px * var(--fhd));
        padding-bottom: calc(60px * var(--fhd));
    }

    .footer-col p {
        font-size: calc(10px * var(--fhd));
        margin-bottom: calc(15px * var(--fhd));
    }

    .footer-logos {
        gap: calc(25px * var(--fhd));
    }

    .footer-logo-main,
    .footer-logo-cecop {
        width: calc(160px * var(--fhd));
    }

    .footer-bottom {
        padding: calc(20px * var(--fhd)) 0;
    }

    .footer-bottom p {
        font-size: calc(14px * var(--fhd));
    }

    .contact-text .btn-whatsapp {
        font-size: calc(14px * var(--fhd));
    }
}

@media (max-width: 1600px) and (min-width: 993px) {
    .container {
        max-width: 1100px;
        padding: 0 28px;
    }

    .about-card-content {
        margin-top: -64px;
    }

    .about-text .section-title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.75px;
    }

    .about-text .about-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .about-text .btn-about {
        font-size: 14px;
    }

    .cta-mid-content h2 {
        font-size: 28px;
        line-height: 1.28;
    }

    .products-container {
        column-gap: min(5vw, 42px);
    }

    .icon-box {
        margin-bottom: 14px;
    }

    .products-text-main h2 {
        font-size: 42px;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .products-text-main p {
        font-size: 14px;
        line-height: 1.5;
    }

    .btn-products {
        margin-top: 18px;
        padding: 14px 84px
    }

    .product-card-bg img {
        width: 100%;
        max-width: 520px;
    }

    .ophthalmic-text h2 {
        font-size: 42px;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .ophthalmic-text p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .models-border-wrapper {
        max-width: 504px;
        height: 482px;
    }

    .models-grid {
        gap: 18px;
        padding: 28px 30px;
    }

    .model-item {
        grid-template-columns: minmax(0, 126px) auto;
        gap: 16px;
    }

    .model-item .model-logo {
        max-height: 62px;
    }

    .model-item .model-image {
        max-height: 82px;
    }

    .model-ocupacional .model-image {
        max-height: 112px;
    }

    .exclusive-text h2 {
        font-size: 40px;
        line-height: 1.12;
    }

    .exclusive-text p {
        font-size: 15px;
        line-height: 1.65;
    }

    .cta-bot-text h2 {
        font-size: 34px;
        line-height: 1.22;
    }

    .contact-text h2 {
        font-size: 42px;
        line-height: 1.12;
        letter-spacing: -1px;
    }

    .contact-text .btn-whatsapp {
        font-size: 14px;
    }

    .testimonials-section .testimonial-info h3 {
        font-size: 19px;
        line-height: 1.2;
    }

    .testimonials-section .testimonial-info p.role {
        font-size: 14px;
    }

    .testimonials-section .testimonial-text {
        font-size: 13px;
        line-height: 1.65;
    }

    .site-footer .footer-col p {
        font-size: 12px;
        line-height: 1.45;
        text-align: justify;
        margin-bottom: 8px;
    }

    .site-footer .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
    }

    .testimonials-wrapper::after {
        width: min(78vw, 720px);
        height: min(50vh, 900px);
        min-height: 542px;
    }
}

@media (max-width: 1366px) {
    .bottom-pattern-bg {
        --pattern-start-offset: 392px;
    }
}

@media (max-width: 1200px) {
    .bottom-pattern-bg {
        --pattern-start-offset: 360px;
    }
}

@media (max-width: 1100px) {
    .header {
        padding: 24px 0 20px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-heading {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .bottom-pattern-bg {
        --pattern-start-offset: 300px;
    }

    .about-card-content {
        margin-top: -80px;
    }

    .about-image img {
        transform: scale(1);
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
        margin-top: 30px;
    }

    .cta-mid-section {
        padding: 0 0 12px;
    }

    .cta-mid-banner {
        padding: 28px 12px;
    }

    .cta-mid-banner::before {
        width: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .products-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .products-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-products {
        grid-column: unset;
        grid-row: unset;
    }

    .icon-box {
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .products-visual {
        grid-column: unset;
        grid-row: unset;
        align-self: center;
        justify-self: center;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .exclusive-section {
        padding: 48px 0 64px;
    }

    .ophthalmic-inner {
        flex-direction: column;
        text-align: center;
    }

    .ophthalmic-card {
        padding: 50px 0;
    }

    .ophthalmic-text {
        align-items: center;
    }

    .ophthalmic-models {
        width: 100%;
        justify-content: center;
    }

    .exclusive-container {
        flex-direction: column;
        text-align: center;
    }

    .exclusive-visual {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }

    .contact-text h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
        line-height: 1.15;
    }

    .hero-content,
    .about-text,
    .about-image,
    .cta-mid-content,
    .products-text,
    .ophthalmic-text,
    .exclusive-text,
    .cta-bot-text,
    .contact-text,
    .testimonial-card,
    .footer-col,
    .footer-logos,
    .contact-form-box,
    .products-visual,
    .ophthalmic-models,
    .exclusive-visual {
        width: 100%;
        max-width: 100%;
    }

    .cta-bot-card {
        padding: 50px 30px;
        text-align: center;
        background-position: 40%;
    }

    .cta-bot-text {
        margin: 0 auto;
    }

    .testimonials-wrapper {
        padding-top: 200px;
        padding-bottom: 80px;
    }

    .testimonials-wrapper .swiper-wrapper {
        padding-bottom: 64px;
    }


    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .contact-form-box {
        padding: 30px;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-logos {
        align-items: center;
        width: 100%;
        margin: 18px 0 42px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 24px;
    }

    .hero-section {
        height: 85vh;
    }

    .hero-section::before {
        width: 100%;
        background: rgba(0, 7, 20, 0.6);
    }

    .subtitle {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .main-heading {
        font-size: 30px;
        letter-spacing: -1px;
        line-height: 1.12;
        margin-bottom: 18px;

        br {
            display: none;
        }
    }

    .description {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .description br {
        display: none;
    }

    .bottom-pattern-bg {
        --pattern-start-offset: 230px;
    }

    .testimonials-wrapper {
        border-radius: 40px;
    }

    .testimonials-wrapper::after {
        border-radius: 0 0 40px 0;
        width: min(100%, 800px);
        height: min(64vh, 640px);
        min-height: 420px;
    }

    .about-card-container {
        border-radius: 40px;
    }

    .shape-divider img {
        border-radius: 28px 28px 0 0;
    }

    .about-card-content {
        border-radius: 0 0 28px 28px;
        margin-top: -8px;
    }

    /* Tipografia mobile */
    .section-title {
        font-size: 30px;
        line-height: 1.18;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }

    .section-title br {
        display: none;
    }

    .about-desc {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .btn-about {
        font-size: 14px;
    }

    .cta-mid-content h2 {
        font-size: 22px;
        line-height: 1.35;
        letter-spacing: -0.5px;
        margin-bottom: 22px;

        br {
            display: none;
        }
    }

    .btn-cta {
        font-size: 13px;
        padding: 14px 22px;
    }

    .lens-products-section {
        padding: 64px 0 40px;
    }

    .products-text-main h2 {
        font-size: 30px;
        letter-spacing: -1.5px;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .products-text-main h2 br {
        display: none;
    }

    .products-text-main p {
        font-size: 15px;
        line-height: 1.65;
    }

    .btn-products {
        font-size: 13px;
        padding: 14px 24px;
        margin: 32px auto 0;
    }

    .section-divider {
        max-width: 65%;
    }

    .bottom-pattern-bg::before {
        top: 342px;
    }

    .ophthalmic-text h2 {
        font-size: 28px;
        letter-spacing: -1px;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .ophthalmic-text h2 br {
        display: none;
    }

    .ophthalmic-text p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .exclusive-text h2 {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .exclusive-text h2 br {
        display: none;
    }

    .exclusive-text p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .btn-exclusive {
        font-size: 13px;
        padding: 14px 24px;
    }

    .models-border-wrapper {
        height: auto;
        margin-top: 1.5rem;
        padding: 0;
        overflow: hidden;
    }

    .bg-border-svg {
        display: none;
    }

    .models-border-wrapper {
        border-radius: 20px;
        border: 2px solid #ffbe2e;
    }

    .models-grid {
        padding: 28px 20px 32px;
        gap: 20px;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .model-item {
        gap: 16px;
        grid-template-columns: minmax(0, 132px) auto;
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .model-item .model-logo {
        max-height: 46px;
    }

    .model-image-wrapper {
        justify-content: center;
        max-width: 100%;
    }

    .model-item .model-image {
        max-height: 74px;
    }

    .model-ocupacional .model-image {
        max-height: 104px;
    }

    .exclusive-image-box {
        height: 350px;
    }


    .cta-bot-text h2 {
        font-size: 26px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        margin-bottom: 22px;
    }

    .btn-cta-bot {
        font-size: 13px;
        padding: 14px 28px;
    }

    .testimonial-info h3 {
        font-size: 19px;
    }

    .testimonial-info p.role {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-text h2 {
        font-size: 30px;
        letter-spacing: -1px;
        line-height: 1.18;
        margin-bottom: 22px;
    }

    .contact-text h2 br {
        display: none;
    }

    .contact-section {
        padding: 32px 0 48px;
        margin-top: 2rem;
    }

    .form-group label {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .form-group input {
        font-size: 14px;
        padding: 16px 20px;
    }

    .btn-submit {
        font-size: 14px;
    }

    .site-footer {
        padding-top: 48px;
    }

    .footer-col p {
        font-size: 12px;
        line-height: 1.65;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
        padding: 0 12px;
    }
}

/* ≤576px — telas muito estreitas: refino de títulos e corpo */
@media (max-width: 576px) {
    .bottom-pattern-bg {
        --pattern-start-offset: 190px;
    }

    .main-heading {
        font-size: 32px;
        line-height: 1.25;
        letter-spacing: -0.75px;
    }

    .subtitle {
        font-size: 10px;
        letter-spacing: 2.5px;
        margin-bottom: 14px;
    }

    .description {
        font-size: 18px;
        line-height: 1.62;
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.15;
        letter-spacing: -0.35px;
    }

    .about-desc {
        font-size: 14px;
        line-height: 1.62;
    }

    .cta-mid-content h2 {
        font-size: 20px;
        line-height: 1.32;
        letter-spacing: -0.35px;
    }

    .products-text-main h2 {
        font-size: 26px;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .products-text-main p {
        font-size: 14px;
        line-height: 1.62;
    }

    .ophthalmic-text h2 {
        font-size: 24px;
        letter-spacing: -0.75px;
    }

    .ophthalmic-text p {
        font-size: 14px;
        line-height: 1.62;
    }

    .exclusive-text h2 {
        font-size: 26px;
        line-height: 1.12;
    }

    .exclusive-text p {
        font-size: 14px;
        line-height: 1.62;
    }

    .cta-bot-text h2 {
        font-size: 22px;
        line-height: 1.28;
    }

    .contact-text h2 {
        font-size: 26px;
        line-height: 1.15;
        letter-spacing: -0.75px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input {
        font-size: 13px;
    }

    .testimonial-info h3 {
        font-size: 18px;
    }

    .testimonial-info p.role {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.62;
    }

    .footer-col p {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.45;
    }
}

/* Desktop: esconde overlay/painel do menu mobile (após max-width para não conflitar) */
@media (min-width: 1101px) {

    .mobile-menu-backdrop,
    .mobile-menu-panel {
        display: none !important;
    }
}