:root {
    --color-primary: #f87a12;      
    --color-dark: #1a1a1a;         
    --color-light: #ffffff;        
    --color-gray: #f5f5f5;         
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

/* ===============================
   HEADER Y NAVBAR
   =============================== */
.header {
    background-color: var(--color-light);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    height: 96px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-image {
        height: 72px;
    }
}

.logo-placeholder {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #ff7f6b);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* ===============================
   SECCIÓN HERO CON CARRUSEL
   =============================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

/* Overlay oscuro sobre carrusel */
.carousel-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4);
}

/* Botones de navegación del carrusel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--color-dark);
    border: none;
    padding: 12px 16px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    z-index: 3;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Indicadores del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--color-primary);
    transform: scale(1.3);
}

.indicator:hover {
    background-color: var(--color-light);
}

/* Contenido sobre el carrusel */
.hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: var(--color-light);
    max-width: 600px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ===============================
   BOTONES
   =============================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: #ff8566;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 150, 128, 0.4);
}

/* ===============================
   SECCIONES GENERALES
   =============================== */
.section {
    padding: 4rem 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    animation: fadeInDown 0.6s ease;
}

/* ===============================
   CARDS SECTION
   =============================== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--color-light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--color-primary);
    animation: slideInUp 0.6s ease 0.2s backwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(248, 122, 18, 0.2);
}

.card:hover::before {
    left: 100%;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-title {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-highlight {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(248, 122, 18, 0.1), rgba(248, 122, 18, 0.05));
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
    margin-top: 1.5rem;
}

.card-highlight span {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Variaciones de cards */
.card-quality {
    --card-color: #FF6B6B;
}

.card-quality:hover .card-icon {
    animation: pulse-star 0.6s ease;
}

.card-design {
    --card-color: #4ECDC4;
}

.card-design:hover .card-icon {
    animation: rotate-icon 0.6s ease;
}

.card-trust {
    --card-color: #45B7D1;
}

.card-trust:hover .card-icon {
    animation: shield-bounce 0.6s ease;
}

@keyframes pulse-star {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shield-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 150, 128, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 150, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 150, 128, 0);
    }
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Colores alternados de fondo */
.nosotros {
    background-color: var(--color-light);
}

.productos {
    background:
        radial-gradient(circle at 8% 12%, rgba(248, 122, 18, 0.18), transparent 40%),
        radial-gradient(circle at 92% 85%, rgba(26, 26, 26, 0.12), transparent 45%),
        linear-gradient(160deg, #f4f6f8 0%, #eceff3 100%);
    position: relative;
    overflow: hidden;
}

.productos-container {
    text-align: left;
}

.productos-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.productos-kicker {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(248, 122, 18, 0.12);
    border: 1px solid rgba(248, 122, 18, 0.3);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.8rem;
}

.productos-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.product-filter {
    border: 1px solid rgba(26, 26, 26, 0.15);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.product-filter:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.product-filter.active {
    background: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(248, 122, 18, 0.28);
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.product-card {
    background: var(--color-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}

.product-card.is-hidden {
    display: none;
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26, 26, 26, 0.82);
    color: var(--color-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.product-body {
    padding: 1rem 1rem 1.2rem;
}

.product-title {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.product-copy {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.product-features {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.product-features li {
    position: relative;
    padding-left: 1rem;
    color: #424242;
    font-size: 0.9rem;
}

.product-features li::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.proyectos {
    background: url('src/carrusel/barranquilla-4083263_1920.jpg') center/cover no-repeat;
    position: relative;
    color: var(--color-light);
}

.proyectos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ensure the inner container sits above the overlay */
.proyectos .container {
    position: relative;
    z-index: 2;
}

.proyectos .section-title,
.proyectos .section-description {
    color: var(--color-light);
}

.proyectos-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.proyectos-left {
    flex: 1 1 300px;
    max-width: 500px;
    text-align: left;
}

.proyectos-subtitle {
    font-size: 1.8rem;
    margin-top: 1rem;
    color: var(--color-light);
}

.proyectos-note {
    display: inline-block;
    margin-top: 0.5rem;
    background: var(--color-primary);
    color: var(--color-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.proyectos-gallery {
    flex: 1 1 400px;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    height: 420px;
    min-height: 300px;
}

.project-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.project-slide.active {
    opacity: 1;
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.project-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 1rem;
}

.project-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--color-dark);
    border: none;
    padding: 10px 14px;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 4px;
    z-index: 3;
    transition: var(--transition);
}

.project-btn.prev {
    left: 10px;
}

.project-btn.next {
    right: 10px;
}

.project-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.project-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.project-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.project-indicator.active {
    background-color: var(--color-primary);
    transform: scale(1.3);
}

.project-indicator:hover {
    background-color: var(--color-light);
}

.contacto {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.contacto-container {
    text-align: left;
}

.contacto .section-title {
    color: var(--color-primary);
    text-align: center;
}

.contacto .section-description {
    color: #ddd;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contacto-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.8rem;
    align-items: stretch;
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact-card-title {
    font-size: 1.5rem;
    color: var(--color-light);
    margin-bottom: 0.4rem;
}

.contact-card-text {
    color: #d8d8d8;
    margin-bottom: 1.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-field span {
    font-size: 0.92rem;
    color: #efefef;
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-light);
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #cfcfcf;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(248, 122, 18, 0.22);
}

.contact-submit {
    align-self: flex-start;
}

.form-status {
    min-height: 1.2rem;
    font-size: 0.92rem;
    color: #ffd4b0;
}

.contact-address {
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    .proyectos-content {
        flex-direction: column;
    }
    .proyectos-gallery {
        max-width: 100%;
        height: 300px;
        min-height: 250px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: var(--box-shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .carousel-btn {
        padding: 8px 12px;
        font-size: 1.2rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .productos-head {
        margin-bottom: 1.5rem;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .contacto-layout {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper iframe {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 2rem 2rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    animation: fadeInUp 0.8s ease;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-list {
    list-style: none;
}

.footer-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.footer-item:hover {
    transform: translateX(8px);
}

.footer-icon {
    font-size: 1.3rem;
    min-width: 20px;
    display: inline-block;
}

.footer-item a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-item a:hover {
    color: var(--color-primary);
}

.footer-item span:not(.footer-icon) {
    color: #ddd;
}

/* Sección de Redes Sociales */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--color-light);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #999;
    animation: fadeInUp 1s ease;
}

.footer-bottom p {
    margin: 0;
}

/* ===============================
   RESPONSIVE FOOTER
   =============================== */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 2.5rem 1.5rem 2rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
    }
}
