@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800&display=swap');

:root {
    --bg-dark: #020b14;
    --bg-light: #f9fbfe;
    --primary-blue: #0a5da3;
    --secondary-blue: #084c85;
    --accent-orange: #f27c38;
    --accent-orange-hover: #e0601d;
    --text-main: #ffffff;
    --text-dark: #2d3748;
    --text-dim: #718096;
    --card-bg: #ffffff;
    --border-color: rgba(10, 93, 163, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Montserrat', sans-serif;
}

section {
    padding: 80px 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.glow-text {
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.card-lite {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 30px 25px; /* Reduced padding from 40px 35px for a sleeker look */
    transition: var(--transition);
}

.card-lite:hover {
    box-shadow: 0 20px 40px rgba(10, 93, 163, 0.12);
    transform: translateY(-8px);
}

.bg-blue-section {
    background-color: var(--primary-blue);
    color: white;
}

.bg-light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.orange-bar {
    background-color: var(--accent-orange);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 11, 20, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-orange);
}

.flex-header {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-support {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header-support span {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.header-support-img {
    height: 30px;
    background: white;
    padding: 2px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .header-support {
        display: none;
    }
}

.menu-icon {
    font-size: 2.5rem;
    color: var(--text-main);
    cursor: pointer;
    display: none !important;
    z-index: 1001;
    line-height: 1;
}

@media (max-width: 900px) {
    .menu-icon {
        display: block !important;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #cbd5e0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--accent-orange);
}

.btn-nav {
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    padding: 220px 0 140px;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(2, 11, 20, 0.7), rgba(2, 11, 20, 0.7)), url('../assets/pratica01.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.badge-new {
    display: inline-block;
    padding: 6px 15px;
    background: var(--accent-orange);
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 45px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 10px 25px rgba(242, 124, 56, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(242, 124, 56, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 20px;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Lab Experience */
.lab-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.lab-img-side {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lab-img-side img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.lab-img-side:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .lab-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Partner Row */
.partner-row {
    background: white;
    padding: 35px 0;
    border-bottom: 1px solid #edf2f7;
}

.partner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-label {
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.partner-logo {
    height: 50px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Differentials Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Differentials Icon Box */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.bg-orange-soft {
    background: rgba(242, 124, 56, 0.08);
}

.bg-blue-soft {
    background: rgba(10, 93, 163, 0.08);
}

.icon-orange-new {
    color: var(--accent-orange);
    font-size: 2.5rem;
}

.icon-blue-new {
    color: var(--primary-blue);
    font-size: 2.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.featured-video {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    background: #000;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-video video {
    width: 100%;
    display: block;
}

/* Schedule */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 20px;
}

.day-tag {
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--primary-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.schedule-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
}

@media (max-width: 500px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styling */
.footer-main {
    background: #01060b;
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 25px;
}

.footer-heading {
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.text-dim-footer {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.text-dim-footer i {
    color: var(--accent-orange);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
}

.copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Inscrição Custom */
.form-container-new {
    max-width: 650px;
    margin: 0 auto;
    background: white;
}

.form-group-new {
    margin-bottom: 25px;
    text-align: left;
}

.form-group-new label {
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group-new input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: 0.3s;
}

.form-group-new input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(10, 93, 163, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .flex-header {
        height: 80px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    #navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(2, 11, 20, 0.98);
        padding: 40px;
        display: none;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid var(--accent-orange);
    }

    #navbar.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 38px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 35px rgba(18, 140, 126, 0.4);
}

/* Utilities Extended */
.text-blue {
    color: var(--primary-blue) !important;
}

.text-white {
    color: white !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-orange {
    color: var(--accent-orange) !important;
}

.text-dim-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.w-100 {
    width: 100% !important;
}

.bg-blue {
    background: var(--primary-blue) !important;
}

/* Pricing Card Refinements */
.pricing-card {
    padding: 25px 20px !important; /* Even leaner for pricing */
}

.pricing-card h3 {
    margin-bottom: 10px !important;
}

.pricing-card .icon-box {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto 20px !important; /* Forces horizontal centering */
}

.pricing-card .icon-box i {
    font-size: 2rem !important;
}

.pricing-card .price-value {
    margin: 15px 0 !important;
    text-align: center;
    min-height: 60px; /* Standardize height */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width for centering */
}

.voucher-input-container {
    margin: 15px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voucher-input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
}


.pricing-card .voucher-input-field {
    padding: 12px !important;
    font-size: 0.95rem !important;
}

.pricing-card .text-dark.mb-20 {
    margin-bottom: 20px !important;
    font-size: 0.9rem !important;
}

.pricing-card .btn {
    padding: 12px 20px !important;
}

.pricing-card .badge-new {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    padding: 4px 12px;
    font-size: 0.75rem;
}

/* Checkout Page Specifics */
.checkout-main {
    padding: 140px 0 80px;
    background: var(--bg-light);
    min-height: 80vh;
}

.checkout-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.checkout-form-side {
    flex: 1;
    max-width: 600px;
    width: 100%;
}

.checkout-summary-side {
    width: 100%;
    max-width: 380px;
}

@media (max-width: 950px) {
    .checkout-grid {
        flex-direction: column;
        align-items: center;
    }

    .checkout-form-side,
    .checkout-summary-side {
        max-width: 100%;
    }
}

.order-summary {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cbd5e0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-top: 20px;
}

.terms-box {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 25px;
    padding: 15px;
    background: #edf2f7;
    border-radius: 8px;
    line-height: 1.4;
}

/* Header & Utility Adjustments */
.header-absolute {
    position: absolute;
}

.text-bold-600 {
    font-weight: 600;
}

.no-decoration {
    text-decoration: none;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.text-green-success {
    color: #25d366;
    font-weight: 600;
}

.text-muted-small {
    font-size: 0.8rem;
    color: #718096;
}

.bg-white {
    background: white !important;
}