/* ==========================================================================
   Protocolo GLP-1 - Planeta Corpo Style Sheet
   ========================================================================== */

/* Variables & Theme Setup */
:root {
    --bg-dark: #060f1c;
    --bg-darker: #040a13;
    --bg-card: #0c1a2d;
    --bg-card-hover: #12253f;
    --primary-blue: #0f2b48;
    --primary-blue-light: #163d66;
    --accent-gold: #f5af19;
    --accent-orange: #f12711;
    --accent-blue: #2196f3;
    --text-light: #f0f4f8;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --border-color: rgba(245, 175, 25, 0.12);
    --border-hover: rgba(245, 175, 25, 0.3);
    --gold-gradient: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    --blue-gradient: linear-gradient(135deg, #0f2b48 0%, #060f1c 100%);
    --font-primary: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --container-width: 1200px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 25px rgba(245, 175, 25, 0.15);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section-padding {
    padding: 100px 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-primary);
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

/* Typography & General Helpers */
.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 30px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(241, 39, 17, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 39, 17, 0.6);
}

.btn-secondary {
    border: 2px solid var(--accent-gold);
    color: #ffffff;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(245, 175, 25, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(245, 175, 25, 0.15);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 15, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 175, 25, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(4, 10, 19, 0.95);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: var(--transition);
}

.header.scrolled .container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 64px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 52px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(15, 43, 72, 0.3) 0%, rgba(6, 15, 28, 0) 60%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 175, 25, 0.06);
    border: 1px solid rgba(245, 175, 25, 0.2);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-badge svg {
    stroke: var(--accent-gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid rgba(245, 175, 25, 0.15);
}

/* Deep blue tint overlay to integrate the daylight photo into the website's dark mode style */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 43, 72, 0.45);
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 22%; /* Centers the top orange lettering of the facade signage */
    transition: transform 8s ease, filter 0.3s ease;
    filter: brightness(0.65) contrast(1.1) saturate(0.85);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(6, 15, 28, 0.95) 0%, rgba(6, 15, 28, 0.4) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2; /* Sits on top of the blue color blend overlay */
}

.hero-overlay-tag {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.hero-overlay-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

/* Section Padding general */
.section-padding {
    padding: 100px 0;
}

/* The Protocol Section (Concept) */
.concept {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(245, 175, 25, 0.03);
    border-bottom: 1px solid rgba(245, 175, 25, 0.03);
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.concept-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.concept-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.concept-card:hover::before {
    opacity: 1;
}

.concept-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 175, 25, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 28px;
    border: 1px solid rgba(245, 175, 25, 0.15);
    transition: var(--transition);
}

.concept-card:hover .concept-icon {
    background: var(--gold-gradient);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 175, 25, 0.3);
}

.concept-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.concept-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Services / Pillars Detail Section */
.pillars {
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-item {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pillar-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.pillar-num {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    opacity: 0.8;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.pillar-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Scientific Context Section (clinical) */
.clinical-section {
    background-color: var(--bg-darker);
    position: relative;
    border-top: 1px solid rgba(245, 175, 25, 0.03);
    border-bottom: 1px solid rgba(245, 175, 25, 0.03);
}

.clinical-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.clinical-content {
    max-width: 680px;
}

.clinical-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.clinical-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.safety-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.safety-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.safety-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.safety-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.safety-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.clinical-badge-card {
    background: linear-gradient(135deg, rgba(245, 175, 25, 0.05) 0%, rgba(241, 39, 17, 0.05) 100%);
    border: 1px solid rgba(245, 175, 25, 0.2);
    padding: 45px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-glow);
    position: relative;
}

.clinical-badge-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    background: radial-gradient(circle at 50% 50%, rgba(245, 175, 25, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.clinical-badge-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px auto;
    background: rgba(245, 175, 25, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    border: 1px solid rgba(245, 175, 25, 0.3);
}

.clinical-badge-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.clinical-badge-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Professional Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.member-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.member-img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-darker);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.member-card:hover .member-img {
    transform: scale(1.04);
}

.member-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.member-header {
    margin-bottom: 18px;
}

.member-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.member-credits {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.member-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(245, 175, 25, 0.03);
    border-bottom: 1px solid rgba(245, 175, 25, 0.03);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--accent-gold);
    transition: transform 0.3s ease;
}

/* Horizontal bar */
.faq-icon::before {
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
}

/* Vertical bar */
.faq-icon::after {
    top: 0;
    left: 8px;
    width: 2px;
    height: 18px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(245, 175, 25, 0.04);
}

/* Contact & Location Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.contact-info-container {
    height: 100%;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 45px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
    flex-grow: 1;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

a.contact-detail-item:hover {
    transform: translateX(4px);
}

.contact-detail-icon {
    width: 46px;
    height: 46px;
    background: rgba(245, 175, 25, 0.05);
    border: 1px solid rgba(245, 175, 25, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: var(--transition);
}

a.contact-detail-item:hover .contact-detail-icon {
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 4px 10px rgba(245, 175, 25, 0.2);
}

.contact-detail-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-subtext {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-action-link {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.contact-cta-wrapper {
    margin-top: auto;
}

.contact-map-container {
    height: 100%;
}

.map-wrapper {
    height: 100%;
    min-height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%); /* Dark map theme */
}

/* Footer styling */
.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(245, 175, 25, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    max-width: 650px;
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--text-muted);
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
}

.fade-in-up.animate {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ==========================================================================
   Responsive Styles (Mobile & Tablet)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-image {
        height: 380px;
    }

    .concept-grid, .pillars-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .clinical-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .clinical-content {
        max-width: 100%;
    }

    .clinical-badge-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --border-radius-lg: 16px;
    }

    section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    /* Mobile Header & Menu Toggle */
    .mobile-nav-toggle {
        display: flex;
        z-index: 1100;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(245, 175, 25, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1050;
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    /* Menu Hamburger Animation */
    .mobile-nav-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Grid collapses */
    .concept-grid, .pillars-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .concept-card, .pillar-item {
        padding: 30px;
    }

    .member-img-wrapper {
        height: 380px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        padding: 12px 24px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hero-image {
        height: 280px;
    }

    .member-img-wrapper {
        height: 320px;
    }

    .contact-value {
        font-size: 1rem;
    }
    
    .map-wrapper {
        min-height: 280px;
    }
}
