        /*css*/
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #606060;
            padding-top: 80px;
            overflow-x: hidden;
        }

        .playfair {
            font-family: 'Playfair', serif;
        }

        .header {
            background: white;
            padding: 20px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .header.hidden {
            transform: translateY(-100%);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            height: 60px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav {
            display: flex;
            gap: 30px;
        }

        .nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
            position: relative;
        }

        .nav a:hover {
            color: #c96676;
        }

        .nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #c96676;
            transition: width 0.3s ease;
        }

        .nav a:hover::after {
            width: 100%;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons img {
            width: 24px;
            height: 24px;
            transition: transform 0.3s;
        }

        .social-icons img:hover {
            transform: scale(1.1);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 100%;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background: white;
            z-index: 999;
            padding: 80px 30px 30px;
            transition: right 0.4s ease;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .mobile-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.3s;
        }

        .mobile-nav a:hover {
            color: #c96676;
        }

        .mobile-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }

        .mobile-social img {
            width: 24px;
            height: 24px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .hero {
            height: 1080px;
            background-color: #f0d5d5;
            background-image: url('imagens/header\ PC.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .quote-section {
            position: relative;
            z-index: 2;
            background: rgba(255, 242, 242, 0.80);
            padding: 25px 40px;
            text-align: center;
            border-top: 3px solid #c96676;
            animation: slideUp 1s ease;
            max-width: 1000px;
            width: 90%;
            margin-bottom: 50px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quote-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-style: italic;
            color: #000000;
            margin-bottom: 15px;
        }

        .quote-text {
            font-size: 14px;
            line-height: 1.6;
            color: #000000;
            max-width: 800px;
            margin: 0 auto;
        }

        /* SOBRE */
        .about-section {
            display: flex;
            min-height: 800px;
            align-items: stretch;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            background: #fff2f2;
        }

        .about-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-image {
            flex: 1;
            background-color: #f0d5d5;
            background-image: url('imagens/header\ PC.webp');
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }

        .about-section:hover .about-image {
            transform: scale(1.02);
        }

        .about-text-content {
            flex: 1;
            background: #fff2f2;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .about-date {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .about-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-style: italic;
            color: #333;
            margin-bottom: 20px;
        }

        .about-description {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .content-section {
            display: flex;
            min-height: 800px;
            align-items: stretch;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .content-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .content-section:nth-child(even) {
            flex-direction: row-reverse;
        }

        .content-image {
            flex: 1;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }

        .content-section:hover .content-image {
            transform: scale(1.02);
        }

        .content-text {
            flex: 1;
            background: #fff2f2;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .content-date {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .content-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-style: italic;
            color: #333;
            margin-bottom: 20px;
        }

        .content-description {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .btn-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            background: #c96676;
            color: white;
            padding: 12px 30px;
            border: none;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s;
        }

        .btn:hover {
            background: #daaaa2;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-secondary {
            background: transparent;
            color: #c96676;
            border: 1px solid #c96676;
        }

        .btn-secondary:hover {
            background: #c96676;
            color: white;
        }

        .posts-section {
            background: #f0d5d5;
            padding: 80px 20px;
            text-align: center;
        }

        .posts-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-style: italic;
            color: #333;
            margin-bottom: 50px;
        }

        .posts-grid {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .post-item {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .post-item:hover {
            transform: translateY(-5px);
        }

        .post-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .post-item:hover .post-image {
            transform: scale(1.05);
        }

        .post-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            text-align: center;
        }

        .post-platform {
            font-family: 'Playfair', serif;
            font-style: italic;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .post-btn {
            background: #d28273;
            color: white;
            padding: 8px 20px;
            border: none;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .post-btn:hover {
            background: #c96676;
            transform: translateY(-2px);
        }

        .footer {
            background: #daaaa2;
            padding: 50px 20px 30px;
            position: relative;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .footer-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
            width: 100%;
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-social img {
            width: 30px;
            height: 30px;
            transition: transform 0.3s;
        }

        .footer-social img:hover {
            transform: scale(1.1);
        }

        .copyright {
            color: #fff;
            font-size: 14px;
            text-align: center;
        }

        .footer-extra-icon {
            opacity: 0.40;
            position: absolute;
            bottom: 0px;
            right: 0;
            width: 40px;
            height: 40px;
            transition: transform 0.3s;
        }

        .footer-extra-icon:hover {
            transform: scale(1.1);
        }

        @media (max-width: 992px) {
            .quote-section {
                padding: 25px 30px;
            }

            .about-text-content {
                padding: 60px 40px;
            }

            .content-text {
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }

            .header {
                padding: 8px 0;
            }

            .logo {
                height: 45px;
            }

            .menu-toggle {
                display: flex;
            }

            .nav,
            .social-icons {
                display: none;
            }

            /*remover hero do mobile*/
            .hero {
                height: 0px;
                background-image: none;
            }

            .quote-section {
                padding: 20px 25px;
                margin-bottom: 30px;
                width: 95%;
            }

            .quote-title {
                font-size: 24px;
                margin-bottom: 12px;
            }

            .quote-text {
                font-size: 13px;
                line-height: 1.5;
            }

            .about-section {
                flex-direction: column !important;
            }

            .about-image {
                min-height: 50vh;
            }

            .about-text-content {
                padding: 40px 30px;
            }

            .content-section {
                flex-direction: column !important;
            }

            .content-image {
                min-height: 600px;
            }

            .content-text {
                padding: 40px 30px;
            }

            .posts-grid {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 40px 20px 25px;
            }

            .footer-extra-icon {
                bottom: 0px;
                right: 0px;
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .quote-section {
                padding: 20px;
                margin-bottom: 20px;
            }

            .quote-title {
                font-size: 22px;
            }

            .quote-text {
                font-size: 12px;
            }

            .about-text-content {
                padding: 30px 20px;
            }

            .about-title {
                font-size: 24px;
            }

            .about-description {
                font-size: 13px;
            }

            .footer-social {
                gap: 15px;
            }

            .footer-social img {
                width: 25px;
                height: 25px;
            }

            .footer-logo {
                height: 50px;
            }

            .btn-container {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
        }

        /* Ajuste para orientação paisagem em mobile */
        @media (max-height: 600px) and (orientation: landscape) {
           /* .hero {
                height: 100vh;
            } */

            .quote-section {
                padding: 15px 20px;
                margin-bottom: 20px;
            }

            .about-text-content {
                padding: 30px 20px;
            }
            
            .about-image {
                min-height: 100vh;
            }
        }