/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fontes Personalizadas */
@font-face {
    font-family: 'Adobe Garamond Pro';
    src: url('Fontes/AGARAMONDPRO-REGULAR.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Adobe Garamond Pro';
    src: url('Fontes/AGARAMONDPRO-BOLD.OTF') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Adobe Garamond Pro';
    src: url('Fontes/AGARAMONDPRO-ITALIC.OTF') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fontes/MONTSERRAT-LIGHT.OTF') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fontes/MONTSERRAT-REGULAR.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fontes/MONTSERRAT-SEMIBOLD.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
}

:root {
    /* Paleta Elegante - Creme, Beige, Castanho, Preto */
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #c49a6c;
    --text-dark: #1a1a1a;
    --text-light: #5c4d42;
    --bg-light: #f5f0e8;
    --bg-cream: #faf7f2;
    --beige: #e8dcc8;
    --brown-dark: #4a3f35;
    --white: #ffffff;
    --shadow: rgba(74, 63, 53, 0.1);
    --shadow-hover: rgba(74, 63, 53, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--beige) 100%);
    line-height: 1.6;
    min-height: 100vh;
}

body.lang-page {
    background: var(--white);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header e Logo */
.header {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInDown 0.8s ease;
}

.logo-container {
    position: relative;
    display: inline-block;
}

/* Botão Voltar */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
    white-space: nowrap;
    margin-bottom: 30px;
}

.back-button:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(-3px);
}

.logo {
    display: inline-block;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 30px var(--shadow-hover));
}

.logo-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
}

.logo-text {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 3rem;
    font-weight: normal;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--secondary-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Introdução */
.introduction {
    padding: 60px 20px;
    animation: fadeIn 1s ease 0.3s both;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-photo {
    flex: 0 0 320px;
}

.ewa-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.ewa-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px var(--shadow-hover);
}

.intro-text-container {
    flex: 1;
    text-align: left;
}

.introduction h1 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.8rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 5px 15px var(--shadow);
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.facebook:hover {
    background: #0d5dbb;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

/* Chat Section */
.chat-section {
    padding: 40px 20px;
    animation: fadeIn 1s ease 0.6s both;
}

.chat-and-social-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.chat-container {
    flex: 1;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px var(--shadow);
    overflow: hidden;
}

.facebook-feed-container {
    flex: 0 0 360px;
}

.facebook-feed-header {
    text-align: center;
    margin-bottom: 20px;
}

.facebook-feed-header h3 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.facebook-feed-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-light);
}

.facebook-feed-embed {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.facebook-feed-embed iframe {
    display: block;
    width: 100%;
}

/* Galeria de Trabalhos */
.gallery-section {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
    animation: fadeIn 1s ease 0.8s both;
}

.gallery-section h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.8rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gallery-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 50px;
}

.gallery-cta {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.gallery-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--accent-color);
}

.gallery-cta-content svg {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.gallery-cta-content h3 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.2rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gallery-cta-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.view-more-button {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow);
}

.view-more-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.view-more-button svg {
    transition: var(--transition);
}

.view-more-button:hover svg {
    transform: translateX(5px);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.chat-header h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.chat-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
    font-weight: 300;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 25px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.welcome-message {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    animation: slideInLeft 0.5s ease;
}

.welcome-message p {
    margin: 5px 0;
}

.message {
    padding: 12px 18px;
    border-radius: var(--border-radius);
    max-width: 80%;
    word-wrap: break-word;
    animation: slideIn 0.3s ease;
}

.message.user {
    background: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
    margin-left: auto;
}

.message.assistant {
    background: var(--white);
    color: var(--text-dark);
    align-self: flex-start;
    border: 1px solid #e0e0e0;
}

.message.error {
    background: #fff3f3;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: var(--border-radius);
    width: fit-content;
    border: 1px solid #e0e0e0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.chat-input-container {
    display: flex;
    padding: 20px;
    background: var(--white);
    gap: 12px;
    border-top: 1px solid #e0e0e0;
}

.chat-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.chat-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.chat-input:disabled {
    background: var(--bg-light);
    cursor: not-allowed;
}

.send-button {
    padding: 15px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-button:hover:not(:disabled) {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.send-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.chat-status {
    padding: 12px 20px;
    background: #fff3cd;
    border-top: 1px solid #ffc107;
    text-align: center;
    color: #856404;
}

.chat-status.ready {
    background: #d4edda;
    border-top-color: #28a745;
    color: #155724;
}

/* Language Selection Buttons */
.language-selection {
    padding: 60px 20px;
    text-align: center;
    animation: fadeIn 1s ease 0.9s both;
}

.language-selection h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.button-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.selection-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid transparent;
}

.selection-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-color: var(--secondary-color);
}

.selection-button .flag {
    font-size: 3rem;
    line-height: 1;
}

.selection-button .button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.selection-button strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.selection-button small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox-closing {
    animation: fadeOut 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.lightbox-navigation button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    font-size: 3rem;
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.lightbox-navigation button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--secondary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
    color: var(--text-light);
}

.footer p {
    margin: 8px 0;
}

.footer-services {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes typing {

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

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

/* Responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5rem;
    }

    .intro-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .intro-photo {
        flex: 0 0 250px;
    }

    .ewa-photo {
        height: 250px;
    }

    .intro-text-container {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .introduction h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .chat-and-social-container {
        flex-direction: column;
    }

    .facebook-feed-container {
        flex: 1;
        width: 100%;
    }

    .facebook-feed-embed iframe {
        width: 100%;
    }

    .gallery-cta {
        padding: 40px 25px;
    }

    .gallery-cta-content h3 {
        font-size: 1.6rem;
    }

    .chat-messages {
        height: 300px;
    }

    .button-group {
        grid-template-columns: 1fr;
    }

    .selection-button {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2rem;
    }

    .intro-photo {
        flex: 0 0 200px;
    }

    .ewa-photo {
        height: 200px;
    }

    .introduction h1 {
        font-size: 1.6rem;
    }

    .gallery-section h2,
    .language-selection h2 {
        font-size: 1.6rem;
    }

    .gallery-cta-content h3 {
        font-size: 1.4rem;
    }

    .selection-button .flag {
        font-size: 2.5rem;
    }

    .back-button {
        position: static;
        margin-bottom: 20px;
        display: inline-flex;
    }
}

/* ===================================
   SERVICES SECTION - Design Elegante
   =================================== */

.services-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeIn 1s ease 0.5s both;
}

.services-section>h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 3rem;
    font-weight: normal;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.services-section>h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.service-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 45px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px var(--shadow-hover);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item h3 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.service-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 25px;
    display: block;
}

.service-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.service-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.service-features li strong {
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

/* ===================================
   MODERN LANDING PAGE STYLES
   =================================== */

.lang-page {
    background: var(--white);
}

/* Hero Lang */
.hero-lang {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--beige) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 20px;
}

.hero-nav {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.btn-back {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateX(-3px);
}

.hero-logo {
    max-width: 250px;
    height: auto;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.hero-title span {
    display: block;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-top: 15px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-light);
    margin-top: 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    font-size: 2rem;
    color: var(--accent-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

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

/* Intro Visual */
.intro-visual {
    padding: 100px 20px;
    background: var(--white);
}

.intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-text h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
}

.social-icons-modern {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icons-modern a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-icons-modern a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Services Modern */
.services-modern {
    background: var(--white);
}

.service-modern {
    padding: 120px 20px;
}

.service-modern.white-bg {
    background: var(--white);
}

.service-modern.colored-bg {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--beige) 100%);
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-content.reverse {
    /* pode adicionar estilos específicos se necessário */
}

.service-icon {
    margin-bottom: 35px;
}

.service-icon svg {
    stroke: var(--accent-color);
}

.service-modern h3 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.01em;
}

.service-modern .tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 30px;
}

.service-modern p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 35px;
}

.feature-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.pill {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    background: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    border: 1px solid var(--secondary-color);
    transition: var(--transition);
}

.pill:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Chat Compact */
.chat-compact {
    padding: 80px 20px;
    background: var(--bg-light);
}

.chat-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.chat-wrapper h3 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.chat-box-small {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.chat-messages-small {
    height: 280px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
}

.chat-input-group {
    display: flex;
    gap: 10px;
}

.chat-input-group input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--beige);
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.chat-input-group button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.chat-input-group button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Footer Modern */
.footer-modern {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-col p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-logo {
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title span {
        font-size: 1.5rem;
    }

    .hero-nav {
        padding: 0 20px;
    }

    .hero-logo {
        max-width: 180px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image img {
        height: 400px;
    }

    .service-modern {
        padding: 80px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===================================
   LANGUAGE PAGES - Design Visual Limpo
   =================================== */

.services-section-lang {
    padding: 60px 20px 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.services-section-lang>h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.8rem;
    font-weight: normal;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.services-section-lang>h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 25px auto 0;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 60px 50px;
    margin-bottom: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.service-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 30px;
}

.service-description {
    margin-bottom: 35px;
}

.service-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.highlight-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px 28px;
    transition: var(--transition);
}

.highlight-box:hover {
    background: var(--beige);
    transform: translateY(-3px);
}

.highlight-box h4 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.highlight-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Chat Compacto */
.chat-section-compact {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.chat-container-small {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow);
    padding: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.chat-header-small {
    text-align: center;
    margin-bottom: 20px;
}

.chat-header-small h3 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 1.6rem;
    font-weight: normal;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.chat-messages-small {
    height: 280px;
    overflow-y: auto;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

/* === New Clean Design Styles === */

/* Navigation Luxury */
.nav-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: white;
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-back {
    color: var(--text-brown);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-back:hover {
    opacity: 0.6;
}

.nav-logo {
    height: 50px;
    width: auto;
}

/* Hero Intro */
.hero-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-intro-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-intro-text h1 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-brown);
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
}

.hero-intro-text .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-brown);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 2rem 0;
}

.hero-intro-text .description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: var(--text-brown);
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.hero-social {
    display: flex;
    gap: 2rem;
}

.hero-social a {
    color: var(--text-brown);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.hero-social a:hover {
    opacity: 0.6;
}

/* Service Detail Sections */
.service-detail {
    padding: 6rem 5%;
    position: relative;
}

.service-detail.light {
    background: var(--bg-creme);
}

.service-detail.dark {
    background: var(--text-brown);
    color: var(--bg-creme);
}

.service-detail.dark h2,
.service-detail.dark .service-subtitle,
.service-detail.dark p,
.service-detail.dark li,
.service-detail.dark strong {
    color: var(--bg-creme);
}

.service-number {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 8rem;
    font-weight: 600;
    color: #9d8b7a;
    position: absolute;
    top: 2rem;
    left: 5%;
    line-height: 1;
}

.service-detail.dark .service-number {
    color: #9d8b7a;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-content h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-brown);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.service-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-brown);
    opacity: 0.8;
    margin: 0 0 2rem 0;
}

.service-content>p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: var(--text-brown);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.service-content p strong {
    font-weight: 600;
    color: var(--text-brown);
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    text-align: center;
    background: white;
}

.cta-section h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 3rem;
    color: var(--text-brown);
    margin: 0 0 1rem 0;
}

.cta-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-brown);
    opacity: 0.7;
    margin: 0 0 2.5rem 0;
}

.btn-luxury {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-brown);
    color: var(--bg-creme);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

/* Chat Luxury */
.chat-luxury {
    padding: 4rem 5%;
    background: var(--bg-beige);
}

.chat-container {
    max-width: 800px;
    margin: 0 auto;
}

.chat-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chat-input-wrapper input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--text-brown);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: white;
}

.chat-input-wrapper button {
    padding: 1rem 2rem;
    background: var(--text-brown);
    color: var(--bg-creme);
    border: none;
    border-radius: 2px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.chat-input-wrapper button:hover {
    transform: scale(1.05);
}

.chat-input-wrapper button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-status {
    margin-top: 0.5rem;
    text-align: center;
}

.chat-status small {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-brown);
    opacity: 0.6;
}

/* Footer Luxury */
.footer-luxury {
    text-align: center;
    padding: 3rem 5%;
    background: var(--text-brown);
    color: var(--bg-creme);
}

.footer-luxury p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Home with Interior Image */
.hero-home {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background-image: url('SiteImages/fundo_home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-page {
    position: relative;
    height: 70vh;
    min-height: 400px;
    background-image: url('SiteImages/fundo_home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(250, 247, 242, 0.85);
}

.hero-logo {
    max-width: 400px;
    width: 60%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {

    .hero-home,
    .hero-page {
        height: 50vh;
        min-height: 400px;
    }

    .hero-logo {
        max-width: 250px;
        width: 70%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-luxury {
        padding: 1rem 3%;
    }

    .nav-logo {
        height: 40px;
    }

    .hero-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 5%;
        text-align: center;
    }

    .hero-intro-image {
        display: flex;
        justify-content: center;
    }

    .hero-intro-image img {
        max-width: 350px;
    }

    .hero-intro-text h1 {
        font-size: 2.5rem;
    }

    .hero-social {
        justify-content: center;
    }

    .service-detail {
        padding: 4rem 5%;
    }

    .service-number {
        font-size: 5rem;
        top: 1rem;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-content>p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Navigation Clean */
.nav-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: var(--bg-creme);
    border-bottom: 1px solid var(--text-brown);
}

.nav-back {
    color: var(--text-brown);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-back:hover {
    opacity: 0.6;
}

.nav-logo {
    height: 50px;
    width: auto;
}

/* Hero Clean */
.hero-clean {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-creme);
}

.hero-clean h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-brown);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.hero-clean p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--text-brown);
    opacity: 0.8;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.service-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-creme);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-brown);
    margin: 0 0 0.8rem 0;
}

.service-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-brown);
    opacity: 0.75;
    margin: 0;
    line-height: 1.6;
}

.cta-box {
    background: var(--text-brown);
    color: var(--bg-creme);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.cta-box h3 {
    color: var(--bg-creme);
    margin: 0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-creme);
    color: var(--text-brown);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(250, 247, 242, 0.3);
}

/* About Section */
.about-section {
    padding: 4rem 3rem;
    background: var(--bg-beige);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-brown);
    margin: 0 0 1rem 0;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-brown);
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.about-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-social a {
    color: var(--text-brown);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.about-social a:hover {
    opacity: 0.6;
}

/* Chat Mini */
.chat-mini {
    padding: 3rem 3rem;
    background: var(--bg-creme);
    text-align: center;
}

.chat-mini h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-brown);
    margin: 0 0 2rem 0;
}

.chat-container {
    max-width: 700px;
    margin: 0 auto;
}

.chat-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chat-input-wrapper input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--text-brown);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: white;
}

.chat-input-wrapper button {
    padding: 1rem 2rem;
    background: var(--text-brown);
    color: var(--bg-creme);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.chat-input-wrapper button:hover {
    transform: scale(1.05);
}

.chat-input-wrapper button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-status {
    margin-top: 0.5rem;
    text-align: center;
}

.chat-status small {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-brown);
    opacity: 0.6;
}

/* Footer Clean */
.footer-clean {
    text-align: center;
    padding: 2rem;
    background: var(--text-brown);
    color: var(--bg-creme);
}

.footer-clean p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-clean {
        padding: 1rem 1.5rem;
    }

    .nav-logo {
        height: 40px;
    }

    .hero-clean {
        padding: 3rem 1.5rem;
    }

    .hero-clean h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .chat-mini {
        padding: 2rem 1.5rem;
    }
}

.hero-text-centered {
    text-align: center;
    color: var(--primary-color);
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-centered h1 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(250, 247, 242, 0.5);
}

.hero-text-centered .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.hero-text-centered .description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-text-centered h1 {
        font-size: 2.2rem;
    }

    .hero-text-centered .subtitle {
        font-size: 1rem;
    }
}

