/* ========================================
   CSS Variables & Design System
   ======================================== */
:root {
    /* Colors */
    --primary: 216, 100%, 44%;
    --primary-hover: 216 100% 65.5%;
    --primary-foreground: 0 0% 100%;
    --background: 210 20% 98%;
    --foreground: 222 47% 11%;
    --card: 0 0% 100%;
    --card-foreground: 222 47% 11%;
    --muted: 210 20% 96%;
    --muted-foreground: 215 16% 47%;
    --border: 214 32% 91%;
    --accent: 210 40% 96%;

    /* Spacing */
    --container-padding: 1rem;
    --section-padding: 4rem 0;

    /* Typography */
    --font-family: 'Inter', system-ui, sans-serif;

    /* Transitions */
    --transition: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   Container
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   Typography
   ======================================== */
.text-primary {
    color: hsl(var(--primary));
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title-center {
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all var(--transition);
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background: hsl(var(--primary-hover));
}

.btn-outline {
    border: 2px solid hsl(var(--border));
    color: hsl(var(--foreground));
}

.btn-outline:hover {
    background: hsl(var(--muted));
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsl(var(--background) / 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(var(--border) / 0.5);
}

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

@media (min-width: 768px) {
    .header-content {
        height: 80px;
    }
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 32px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    transition: color var(--transition);
}

.nav-link:hover {
    color: hsl(var(--primary));
}
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 999;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    background: #f5f5f5;
}

/* Mobile sub-item */
.nav-link-mobile--sub {
    padding-left: 24px;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 15px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: hsl(var(--foreground));
    transition: all var(--transition);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid hsl(var(--border) / 0.5);
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-link-mobile {
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--foreground) / 0.8);
    padding: 0.5rem 0;
    transition: color var(--transition);
}

.nav-link-mobile:hover {
    color: hsl(var(--primary));
}

.btn-mobile {
    margin-top: 0.5rem;
    text-align: center;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding-top: 100px;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--muted)));
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 6rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 0 var(--container-padding) 0 var(--container-padding);
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

.hero-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: hsl(var(--primary));
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}
.hero-slogan {
    font-weight: 700;
    font-size: 1.25rem;
}
.hero-description {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
    max-width: 800px;
    margin-top: .5rem;
    margin-bottom: 2rem;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
    }
}

.hero-logo {
    width: 30rem;
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-image {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50%;
}
@media (min-width: 1024px) {
    .hero-image{
        display: block;
    }
}
.hero-phones {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: min(500px, 100%);
    min-height: 600px;
}

.hero-phones img {
    border: 2px solid black;
    border-radius: 2rem;
    position: absolute;
    top: 0;
    width: 50%;
}

.left-hero-phone {
    position: absolute;
    top: 50%;
    transform: translateY(5%);
    height: 80%;
    left: 0;
    z-index: 1;
}

.middle-hero-phone {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.right-hero-phone {
    position: absolute;
    top: 50%;
    transform: translateY(5%);
    height: 80%;
    right: 0;
    z-index: 2;
}
/* ========================================
   About Section
   ======================================== */
.about {
    padding: var(--section-padding);
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.about-block:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .about-block {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .about-block-reverse {
        flex-direction: row-reverse;
    }
}

.about-image {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    align-self: center;
    justify-content: center;
    max-width: 400px;
}

.about-img {
    width: 100%;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.about-list {
    margin-top: 1.5rem;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: hsl(var(--foreground) / 0.9);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--section-padding);
    padding-bottom: 0;
    background: hsl(var(--muted));
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-subtitle {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}
.features-grid > img {
    width: calc(60% + 2rem);
}


@media (min-width: 640px) {
    .features-grid > img {
        width: calc(40% + 2rem);
    }
}

@media (min-width: 1024px) {
    .features-grid > img {
        width: calc(25% + 2rem);
    }
}

/* ========================================
   Notifications Section
   ======================================== */
.notification {
    background: hsl(var(--primary));
}
.notification-background {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.notification-text-block{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    color: hsl(var(--primary-foreground));
}
.maos {
    width: 100%;
    align-self: end;
}
.maos > img {
    width: 100%;
}
.notification-tittle {
    font-size: clamp(1.7rem, 4vw, 3.7rem);
    text-align: center;
    margin-bottom: 0.5rem;
}
.notification-text {
    font-size: clamp(1rem, 2vw , 1.7rem);
    align-self: center;
    text-align: center;
    line-height: 1;
    width: 100%;
}
@media (min-width: 640px) {
    .maos {
        width: 50%;
        align-self: center;
    }
    .notification-text {
        width: 100%;
    }
}
@media (min-width: 1024px) {
    .notification-background {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .maos {
        width: 50%;
        align-self: end;
    }
    .notification-text-block{
        align-items: center;
        justify-content: center;
        margin-left: 4%;
    }
    .notification-tittle{
        line-height: 1;
        margin-bottom: 1.75rem;
        text-align: left;
    }
    .notification-text {
        text-align: left;
    }

}
/* ========================================
    Efficiency Section
   ======================================== */
.efficiency {
    padding: var(--section-padding);
}

.efficiency-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.efficiency-block:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .efficiency-block {
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }

    .efficiency-block-reverse {
        flex-direction: row-reverse;
    }
}

.efficiency-block-left-side{
    flex-direction: row;
    background: hsl(var(--primary));
}
.efficiency-block-left-side-text{
    width: 40%;
}

.efficiency-img {
    width: 40%;
}

.efficiency-text {
    flex: 1;
    max-width: 600px;
}

.efficiency-description {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.efficiency-list {
    margin-top: 1.5rem;
}

.efficiency-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: hsl(var(--foreground) / 0.9);
}

/* ========================================
   explain Section
   ======================================== */
.explain {
    background: hsl(var(--primary));
}
.explain-background {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 67dvh;
}
.explain-left-text{
    font-size: 3rem;
    color: hsl(var(--primary-foreground));
    font-weight: 800;
    line-height: 1.2;
    text-wrap: nowrap;
    margin: 3rem auto;
}
.explain-right-text{
    color: hsl(var(--primary-foreground));
    justify-content: space-between;
    font-size: 1.2rem;
    margin: 3rem auto 3rem 2rem;
}
.explain-right-text > ul > li {
    gap: .5rem;
    display: flex;
    text-align: left;
    list-style: none;
    position: relative;
}
.custom-bullet {
    color: hsl(var(--primary-foreground));
    min-height: 1.2rem;
    height: 1.2rem;
    min-width: 1.2rem;
    width: 1.2rem;
}
@media (min-width: 768px) {
    .explain-background{
        grid-template-columns: 1fr 1fr;
        margin: 0;
    }
    .explain-left-text{
        font-size: 4.25rem;
    }
    .explain-right-text{
        font-size: 1.8rem;
    }
}
@media (min-width: 1024px) {
    .explain-background{
        margin: 0;
    }
    .explain-left-text{
        font-size: 5.25rem;
    }
    .explain-right-text{
        font-size: 1.9rem;
    }
    .custom-bullet {
        min-height: 1.9rem;
        min-width: 1.9rem;
        height: 1.9rem;
        width: 1.9rem;
    }
}

/* ========================================
   Example Section
   ======================================== */
.example-body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.example-container {
    position: relative;
    display: flex;
    width: auto;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 5rem;
    margin-top: 5rem;
    align-self: center;
    justify-self: center;
}
.example-aside {
    color: hsl(var(--primary));
    background: hsl(var(--muted));
    padding: 1rem;
}
.example-aside > h3 {
    font-size: clamp(1.2rem, 4vw, 2rem);
}
.example-aside-list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    width: 50%;
    border-radius: 2rem;
    padding: .5rem;
    margin: 1rem 0;
    font-size: clamp(.8rem, 2vw + 3px, 1.5rem);
    font-weight: 600;
}
.example-text-inside {
    gap: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: clamp(.7rem, 2vw, 1.2rem);
}
.example-text-inside-paragraph {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
#example .custom-bullet{
    color: hsl(var(--primary));
    display: inline-flex;
    transform: scaleX(-1);

}
.example-image-holder{
    max-width: 20dvh;
}
.example-image {
    border-radius: 1rem;
}
.example-text {
    display: flex;
    flex-direction: column;
}
.example-text-inside:nth-child(1) {
    height: 12%;
}
.example-text-inside:nth-child(2) {
    height: 8%;
}
.example-text-inside:nth-child(3) {
    height: 29%;
}
.example-text-inside:nth-child(4) {
    height: 26%;
}
.example-text-inside:nth-child(5) {
    height: 10%;
}
@media (min-width: 1024px) {
    .example-container {
        max-width: 60dvw;
    }
    .example-aside{
        height: 60dvh;
    }

    .example-image-holder{
        max-width: 40dvh;
    }
    .example-body{
        gap: 1rem;
        flex-direction: row;
    }
}


/* ========================================
   Resolve social Section
   ======================================== */
.social {
    background: #006bff;

}

.resolve-social{
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.resolve-social-image{
    width: auto;
    height: 100%;
}
.socia-left-image {
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .social{
        width: 100dvw;
        background: #006bff;
    }
    .socia-left-image {
        padding: 5.5rem;
    }
    .resolve-social{
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1280px) {
    .resolve-social-image{
        width: auto;
        height: 100%;
        max-height: 99dvh;
    }
}

/* ========================================
   Onde Estamos Section
   ======================================== */
.onde-estamos-container {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.onde-estamos-title {
    text-align: center;
}

.onde-estamos-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.onde-estamos-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: hsl(var(--card));
    border-radius: 1rem;
    box-sizing: border-box;

    flex: 1 1 100%;
    max-width: 60dvw;
    min-height: 160px;
}

.card-image {
    border-radius: 1rem;
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: contain;
}

.onde-estamos-card-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(0.8rem, 1vw, 1.2rem);
    font-weight: 800;
}

@media (min-width: 768px) {
    .onde-estamos-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        min-height: 220px;
    }
}

@media (min-width: 1024px) {
    .onde-estamos-card {
        flex: 1 1 calc(25% - 1rem);
        max-width: calc(25% - 1rem);
        min-height: 260px;
    }
}
/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: var(--section-padding);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid hsl(var(--border));
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: hsl(var(--foreground));
    transition: color var(--transition);
}

.faq-question:hover {
    color: hsl(var(--primary));
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(199 89% 38%));
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-content {
        flex-direction: row;
        text-align: left;
        gap: 4rem;
    }
}

.cta-text {
    flex: 1;
    color: white;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-title .text-primary {
    color: white;
    text-decoration: underline;
    text-decoration-color: hsl(var(--primary-foreground) / 0.5);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .cta-buttons {
        justify-content: flex-start;
    }
}

.store-btn {
    transition: transform var(--transition), opacity var(--transition);
}

.store-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.store-btn img {
    height: 48px;
    width: auto;
}

@media (min-width: 768px) {
    .store-btn img {
        height: 56px;
    }
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-phone {
    max-width: 400px;
    width: 100%;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsl(var(--muted-foreground));
}

.footer-section {
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .footer-section {
        margin-top: 0;
    }
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsl(var(--muted-foreground));
    transition: color var(--transition);
}

.footer-link:hover {
    color: hsl(var(--primary));
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    border-radius: 50%;
    transition: all var(--transition);
}

.social-btn:hover {
    background: hsl(var(--primary));
    color: white;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid hsl(var(--border));
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}
