/* System variables & Core Reset */
:root {
    --primary-color: #406F8D; /* Azul metálico da nova logo */
    --primary-hover: #224a63;
    --text-dark: #101820;
    --text-muted: #4e5d67;
    --bg-white: #ffffff;
    --bg-light: #edf4f8;
    --bg-card: #ffffff;
    --border-color: #dfe9ef;
    
    --font-titles: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --container-max-width: 1200px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

/* Typography styles */
h1, h2, h3, h4 {
    font-family: var(--font-titles);
    font-weight: 700;
    line-height: 1.2;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(93, 130, 151, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Sections Styling Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-titles);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(16, 24, 32, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(93, 130, 151, 0.15);
}

.nav-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(93, 130, 151, 0.25);
}

.mobile-nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background-color: var(--bg-light);
    background-image: radial-gradient(circle at 80% 20%, rgba(93, 130, 151, 0.08) 0%, transparent 50%);
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(93, 130, 151, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-titles);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

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

.hero-image-wrapper {
    position: relative;
    width: min(100%, 600px);
    margin-left: auto;
}

.hero-image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
    transform: rotate(1deg);
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 600px;
    margin-left: auto;
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background-color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    display: flex;
    align-items: center;
}

.overlay-stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-txt {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(93, 130, 151, 0.3);
}

.service-img-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(93, 130, 151, 0.3);
    border: 3px solid var(--bg-white);
}

.service-content {
    padding: 30px 24px 24px;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.6;
}

/* Before & After Interactive Slider */
.before-after-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    border-radius: 30px;
    font-family: var(--font-titles);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(93, 130, 151, 0.3);
}

/* Comparison Tab Content */
.comparison-tab-content {
    display: none;
}

.comparison-tab-content.active {
    display: block;
}

/* Sub tabs for categories with multiple cases */
.sub-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.sub-tab-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.sub-tab-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.sub-tab-btn.active {
    background-color: var(--text-dark);
    color: var(--bg-white);
    border-color: var(--text-dark);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.comparison-container-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
    background-color: #111;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 500px;
    display: none;
    user-select: none;
    overflow: hidden;
}

.comparison-slider.active {
    display: block;
}

.comparison-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-slider .background-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-slider .foreground-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.comparison-slider .foreground-img-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.comparison-slider .foreground-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.label-tag {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    color: var(--bg-white);
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.before-tag {
    left: 20px;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(4px);
}

.after-tag {
    right: 20px;
    background-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(93, 130, 151, 0.4);
}

.slider-bar {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    z-index: 30;
    cursor: ew-resize;
    top: 0;
    left: 0;
}

.slider-button {
    position: absolute;
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 3px solid var(--bg-white);
    border-radius: 50%;
    left: calc(50% - 22px);
    top: calc(50% - 22px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider-button::before,
.slider-button::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 250px;
    background-color: var(--bg-white);
    z-index: 10;
    pointer-events: none;
}

.slider-button::before {
    bottom: 100%;
    margin-bottom: 3px;
}

.slider-button::after {
    top: 100%;
    margin-top: 3px;
}

/* Why Choose Us */
.why-choose-us-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: rgba(93, 130, 151, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* How We Work (Steps) */
.workflow-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.workflow-step {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.step-num-bubble {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-family: var(--font-titles);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.workflow-img-wrapper {
    height: 180px;
    overflow: hidden;
    background-color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.workflow-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.workflow-step:hover .workflow-img {
    transform: scale(1.05);
}

.workflow-content {
    padding: 24px;
}

.workflow-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.workflow-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Work Gallery */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 250px;
    border: 1px solid var(--border-color);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
}

.gallery-overlay span {
    color: var(--bg-white);
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Who We Are (About Section) */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.about-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-display-card {
    background-color: var(--text-dark);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    width: 100%;
}

.about-logo {
    max-height: 180px;
    width: auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-stat-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(93, 130, 151, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-action-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.contact-action-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.contact-action-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: var(--bg-white);
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
}

.whatsapp-cta-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.card-footer-tip {
    margin-top: 25px;
    font-size: 0.825rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-footer-tip i {
    color: var(--primary-color);
}

/* Footer styling */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 40px 0;
    border-top: 1px solid #222;
}

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

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1); /* Forces it to white inside footer if dark theme needed */
}

.footer-copyright {
    font-size: 0.85rem;
    color: #888;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #888;
    flex-wrap: wrap;
}

.footer-credit-link {
    display: inline-flex;
    align-items: center;
}

.footer-credit-logo {
    height: 1.2rem;
    width: auto;
    display: inline-block;
    filter: none;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-overlay {
        left: 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-side {
        order: 2;
    }
    
    .about-content {
        order: 1;
        text-align: center;
    }
    
    .about-stats-row {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #101820;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 25px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 1rem;
    }
    
    .comparison-slider {
        height: 350px;
    }
}

/* Social Media Component Styles */
.nav-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-social-link:hover {
    color: var(--bg-white);
    transform: translateY(-2px);
}

.nav-social-link[aria-label="Facebook"]:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.nav-social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}

/* Contact Section Social Icons */
.info-icon.social-icon-fb {
    background-color: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.info-item:hover .info-icon.social-icon-fb {
    background-color: #1877f2;
    color: #ffffff;
}

.info-icon.social-icon-ig {
    background-color: rgba(220, 39, 67, 0.1);
    color: #dc2743;
}

.info-item:hover .info-icon.social-icon-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

/* Contact Action Card Social Buttons */
.social-cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    color: #ffffff;
}

.fb-cta {
    background-color: #1877f2;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.25);
}

.fb-cta:hover {
    background-color: #1464cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(24, 119, 242, 0.4);
}

.ig-cta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.25);
}

.ig-cta:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(220, 39, 67, 0.4);
}

/* Footer Socials */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--bg-white);
    font-size: 1.15rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .social-link:hover {
    transform: translateY(-3px);
}

.footer .fb-link:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.footer .ig-link:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}
