

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header */
/* header {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 82px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(0deg) scale(1.1);
}

.logo-icon::before {
    content: "📚";
    font-size: 20px;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1002;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
}
.nav-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
}
.nav-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
}
.nav-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
}
.nav-menu.active li:nth-child(5) {
    transition-delay: 0.5s;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu li a:hover {
    background: linear-gradient(45deg, #e53e3e, #c53030);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

.mobile-menu {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.mobile-menu.active {
    color: #e53e3e;
    transform: rotate(90deg);
} */



/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        width: 280px;
    }

    header {
        padding: 1rem;
    }

    .mobile-menu {
        font-size: 1.5rem;
        padding: 0.6rem;
    }
}

/* Hero Section */
.herocolecoes {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-containercolecoes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-textcolecoes {
    color: #2d3748;
}

.hero-titlecolecoes {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2d3748;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 500px;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.3);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.4);
}

.hero-visualcolecoes {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookshelfcolecoes {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
}

.shelfcolecoes {
    position: absolute;
    width: 95%;
    left: 2.5%;
    height: 12px;
    background: linear-gradient(180deg, #d4a574, #8b4513, #654321);
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.shelf::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(180deg, #654321, #4a2c0a);
    border-radius: 0 0 6px 6px;
}

.shelf-1 {
    top: 18%;
}

.shelf-2 {
    top: 38%;
}

.shelf-3 {
    top: 58%;
}

.shelf-4 {
    bottom: 18%;
}

.book-row {
    position: absolute;
    width: 90%;
    left: 5%;
    height: 85px;
    display: flex;
    align-items: flex-end;
    gap: 1px;
    padding: 0 10px;
}

.row-1 {
    top: 8%;
}

.row-2 {
    top: 28%;
}

.row-3 {
    top: 48%;
}

.row-4 {
    bottom: 8%;
}

.book {
    height: 75px;
    border-radius: 2px 2px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2), inset -2px 0 3px rgba(0, 0, 0, 0.1),
        inset 2px 0 2px rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.book:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25), 2px 0 4px rgba(0, 0, 0, 0.2), inset -2px 0 3px rgba(0, 0, 0, 0.1),
        inset 2px 0 2px rgba(255, 255, 255, 0.2);
}

.book::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.book::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

/* Realistic book variations */
.book-1 {
    width: 24px;
    height: 78px;
    background: linear-gradient(90deg, #dc143c, #b91c1c, #991b1b);
}

.book-2 {
    width: 32px;
    height: 82px;
    background: linear-gradient(90deg, #059669, #047857, #065f46);
}

.book-3 {
    width: 28px;
    height: 75px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8, #1e40af);
}

.book-4 {
    width: 35px;
    height: 80px;
    background: linear-gradient(90deg, #7c3aed, #6d28d9, #5b21b6);
}

.book-5 {
    width: 22px;
    height: 73px;
    background: linear-gradient(90deg, #ea580c, #dc2626, #b91c1c);
}

.book-6 {
    width: 38px;
    height: 85px;
    background: linear-gradient(90deg, #0891b2, #0e7490, #155e75);
}

.book-7 {
    width: 26px;
    height: 77px;
    background: linear-gradient(90deg, #65a30d, #4d7c0f, #365314);
}

.book-8 {
    width: 30px;
    height: 79px;
    background: linear-gradient(90deg, #c2410c, #9a3412, #7c2d12);
}

.book-9 {
    width: 25px;
    height: 76px;
    background: linear-gradient(90deg, #be185d, #9d174d, #831843);
}

.book-10 {
    width: 36px;
    height: 83px;
    background: linear-gradient(90deg, #0d9488, #0f766e, #115e59);
}

.book-11 {
    width: 29px;
    height: 74px;
    background: linear-gradient(90deg, #7c2d12, #92400e, #a16207);
}

.book-12 {
    width: 33px;
    height: 81px;
    background: linear-gradient(90deg, #4338ca, #3730a3, #312e81);
}

/* Some leaning books for realism */
.book-row .book:nth-child(3) {
    transform: rotate(-2deg);
    transform-origin: bottom;
}

.book-row .book:nth-child(7) {
    transform: rotate(1.5deg);
    transform-origin: bottom;
}

.book-row .book:nth-child(5) {
    transform: rotate(-1deg);
    transform-origin: bottom;
}

.floating-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatCircle 8s ease-in-out infinite;
    backdrop-filter: blur(2px);
}

.circle-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 35%;
    left: 8%;
    animation-delay: -4s;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .bookshelf {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-visual {
        height: 250px;
    }

    .bookshelf {
        transform: scale(0.6);
    }
}

/* Animations */
@keyframes floatSmooth {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatShapes {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.05;
    }

    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-8px) rotate(180deg);
        opacity: 0.05;
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.1;
    }

    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.05;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        width: 280px;
    }

    header {
        padding: 1rem;
    }

    .mobile-menu {
        right: 1rem;
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
        padding: 0.6rem;
    }

    .hero-content {
        padding: 1rem;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: gentleBounce 3s ease-in-out infinite;
}

@keyframes gentleBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.7;
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 1;
    }
}

/* Catalog Section */
.catalog-section {
    background: #f8f9fa;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.catalog-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, rgba(229, 62, 62, 0.02) 50%, transparent 51%);
    animation: slidePattern 8s linear infinite;
}

.catalog-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.catalog-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: #e53e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.2);
    animation: floatIcon 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

.catalog-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.3);
}

.catalog-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    border-radius: 50%;
    animation: rotateGradient 6s linear infinite;
}

.catalog-icon-inner {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
}

.catalog-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: expandDivider 2s ease-in-out infinite alternate;
}

.catalog-button {
    display: inline-block;
    background: transparent;
    color: #2d3748;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 1.2rem 2.5rem;
    border: 2px solid #2d3748;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: pulseButton 3s ease-in-out infinite;
}

.catalog-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    transition: all 0.4s ease;
    z-index: -1;
}

.catalog-button:hover {
    color: white;
    border-color: #e53e3e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.catalog-button:hover::before {
    left: 0;
}

/* Refined animations */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes expandDivider {
    0% {
        width: 60px;
    }

    100% {
        width: 100px;
    }
}

@keyframes pulseButton {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(229, 62, 62, 0);
    }
}

@keyframes slidePattern {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50px);
    }
}

/* Portfolio Slider Section */
.portfolio-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(229, 62, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-title {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #e53e3e, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.slide {
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 auto;
    margin: 0 auto;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    width: 280px;
    height: 350px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 62, 62, 0.5);
}

.card-image {
    width: 100%;
    height: 200px;
    /* background: linear-gradient(45deg, #667eea, #764ba2); */
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: cardPulse 2s ease-in-out infinite;
}

.card-image img {
    width: 100%;
    height: 200px;
}

.card-content {
    padding: 1.5rem;
    color: white;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #e53e3e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.card-center {
    z-index: 3;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.card-side {
    opacity: 0.7;
    transform: scale(0.9);
}

.slider-nav {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(229, 62, 62, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e53e3e;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(229, 62, 62, 0.6);
}

.slider-cta {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.slider-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #e53e3e, #c53030);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
    position: relative;
    overflow: hidden;
}

.slider-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.4s ease;
}

.slider-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

.slider-button:hover::before {
    left: 100%;
}

@keyframes cardPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }

    .portfolio-card {
        width: 90%;
        max-width: 320px;
    }

    .card-side {
        display: none;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }
}







/* FOOTER */
/* .footer {
    background: linear-gradient(135deg, #d32f2f, #c62828);
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23ffffff' fill-opacity='0.1'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.logo-icon::before {
    content: "";
    width: 35px;
    height: 45px;
    background: linear-gradient(135deg, #d32f2f, #c62828);
    border-radius: 4px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 85% 15%, 85% 100%, 0 100%);
}

.logo-text {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.footer-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

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

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: white;
    color: #d32f2f;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .footer-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .footer-links {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        gap: 15px;
        margin: 15px 0;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.logofooter {
    width: 20%;
}

*/ .logo_colecoes {
    width: 35%;
}


.logo_catalogo {
    width: 80%;
}