/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffebb7;
}

/* Make all text white on hover */
body *:hover {
    color: #fff !important;
}

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

/* Header styles */
.header {
    background-color: #000 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    color: #000000;
    font-size: 28px;
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* Specifically for links, keep the hover effect strong */
.main-nav a {
    text-decoration: none;
    color: #ffebb7;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.main-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 0;
    bottom: -4px;
}

.main-nav a:hover {
    color: #fff;
    transform: scale(1.08);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #c8a97e;
    font-size: 20px;
}

/* Button styles */
.btn-primary {
    background-color: #c8a97e;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #b6956a;
}

/* Hero section styles */
.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('img/fundo.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    padding-bottom: 80px;
}

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

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* About section styles */
.about {
    padding: 100px 0;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #c8a97e;
    text-align: center;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: #c8a97e;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services section styles */
.services {
    padding: 100px 0;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #c8a97e;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #b6956a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(200, 169, 126, 0.1);
    border-color: rgba(200, 169, 126, 0.4);
}

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

.service-card i {
    font-size: 50px;
    color: #c8a97e;
    margin-bottom: 25px;
    display: block;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: #b6956a;
}

.service-card h3 {
    margin-bottom: 20px;
    color: #c8a97e;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #b6956a;
}

.service-card p {
    color: #ffebb7;
    line-height: 1.6;
    font-size: 15px;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #fff;
}

/* Systems section styles */
.section-subtitle {
    text-align: center;
    color: #ffebb7;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.system-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8a97e, #b6956a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.system-card:hover {
    transform: translateY(-5px);
    background: rgba(200, 169, 126, 0.1);
    border-color: rgba(200, 169, 126, 0.4);
    text-decoration: none;
    color: inherit;
}

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

.system-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.system-card.coming-soon:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(200, 169, 126, 0.2);
}

.system-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c8a97e, #b6956a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
    transition: all 0.3s ease;
}

.system-card:hover .system-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 169, 126, 0.4);
}

.system-icon i {
    font-size: 24px;
    color: #000;
}

.system-content {
    flex: 1;
}

.system-content h3 {
    color: #c8a97e;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.system-card:hover .system-content h3 {
    color: #b6956a;
}

.system-content p {
    color: #ffebb7;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.system-card:hover .system-content p {
    color: #fff;
}

.system-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(200, 169, 126, 0.2);
    color: #c8a97e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(200, 169, 126, 0.3);
    transition: all 0.3s ease;
}

.system-card:hover .feature-tag {
    background: rgba(200, 169, 126, 0.3);
    color: #b6956a;
}

.coming-soon-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border-color: rgba(255, 255, 255, 0.2);
}

.system-arrow {
    flex-shrink: 0;
    color: #c8a97e;
    font-size: 18px;
    transition: all 0.3s ease;
}

.system-card:hover .system-arrow {
    color: #b6956a;
    transform: translateX(5px);
}

/* Team section styles */
.team {
    padding: 100px 0;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Depoimentos section styles */
#depoimentos {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.construction-message {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.construction-message i {
    font-size: 60px;
    color: #c8a97e;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.construction-message h3 {
    font-size: 32px;
    color: #c8a97e;
    margin-bottom: 20px;
    font-weight: 600;
}

.construction-message p {
    font-size: 18px;
    color: #ffebb7;
    line-height: 1.6;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.team h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.team-member p {
    color: #666;
}

/* Contact section styles */
.contact {
    padding: 100px 0;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #c8a97e;
}

.contact-content {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-card {
    /* flex: 1; */
    min-width: 300px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(200, 169, 126, 0.08);
    border-color: rgba(200, 169, 126, 0.4);
    transform: translateY(-2px);
}

.contact-card h3 {
    color: #c8a97e;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(200, 169, 126, 0.1);
    transform: translateX(5px);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c8a97e, #b6956a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.3);
}

.info-icon i {
    font-size: 20px;
    color: #000;
}

.info-text h4 {
    color: #c8a97e;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text p {
    color: #ffebb7;
    font-size: 14px;
    margin: 0;
}

.instagram-link {
    color: #ffebb7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #c8a97e;
}

/* Specialties styles */
.specialties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(200, 169, 126, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(200, 169, 126, 0.2);
    transition: all 0.3s ease;
}

.specialty-item:hover {
    background: rgba(200, 169, 126, 0.2);
    transform: translateX(5px);
}

.specialty-item i {
    color: #c8a97e;
    font-size: 16px;
    width: 20px;
}

.specialty-item span {
    color: #ffebb7;
    font-size: 14px;
    font-weight: 500;
}

/* Schedule styles */
.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
    transition: all 0.3s ease;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    background: rgba(200, 169, 126, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 12px;
}

.schedule-day i {
    color: #c8a97e;
    font-size: 16px;
    width: 20px;
}

.schedule-day span {
    color: #ffebb7;
    font-size: 14px;
    font-weight: 500;
}

.schedule-time {
    color: #c8a97e;
    font-size: 14px;
    font-weight: 600;
    background: rgba(200, 169, 126, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(200, 169, 126, 0.2);
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #c8a97e;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-header p {
    color: #ffebb7;
    font-size: 16px;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #000 !important;
    background-color: #fff !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form input:active,
.contact-form textarea:active {
    outline: none;
    border-color: #c8a97e;
    color: #000 !important;
    background-color: #fff !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666 !important;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a97e, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.footer-info h3 {
    font-size: 24px;
    color: #c8a97e;
    margin: 0;
    font-weight: 600;
}

.footer-info p {
    color: #ffebb7;
    margin: 5px 0;
    font-size: 16px;
}

.footer-description {
    font-size: 14px !important;
    color: #ccc !important;
    line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
    color: #c8a97e;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-item i {
    color: #c8a97e;
    font-size: 16px;
    width: 20px;
}

.footer-contact-item span,
.footer-contact-item a {
    color: #ffebb7;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact-item a:hover {
    color: #c8a97e;
}

.whatsapp-link {
    text-decoration: none;
    color: #ffebb7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-link:hover {
    color: #25D366;
    transform: translateX(5px);
}

.whatsapp-phone-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.whatsapp-phone-link:hover {
    color: #25D366;
    transform: translateX(5px);
}

.whatsapp-phone-link p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffebb7;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 169, 126, 0.2);
}

.social-link:hover {
    background: rgba(200, 169, 126, 0.1);
    color: #c8a97e;
    transform: translateX(5px);
}

.social-link i {
    font-size: 18px;
    width: 20px;
}

.social-link span {
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 169, 126, 0.2);
    padding-top: 25px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    margin: 5px 0;
    color: #ccc;
    font-size: 14px;
}

.footer-credits {
    color: #c8a97e !important;
    font-style: italic;
}


/* Responsive styles */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        margin-left: -50px;
        max-width: 600px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-content {
        max-width: 800px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header {
        position: relative;
    }

    .hero {
        margin-top: 0;
        height: 100vh;
    }

    .mobile-menu-button {
        display: flex !important;
        visibility: visible !important;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 80px 20px 20px;
        z-index: 1000;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px;
        color: #ffebb7;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .main-nav ul li a:hover {
        color: #c8a97e;
        transform: translateX(5px);
    }

    .header-contact {
        flex-direction: column;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-content h2 {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image img {
        width: 100%;
        max-width: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-content {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }

    .contact-card {
        padding: 25px 20px;
        min-width: auto;
    }

    .specialties {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }

    .schedule-time {
        align-self: flex-end;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .form-container {
        padding: 30px 20px;
    }

    .info-item {
        padding: 15px;
    }

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

    .footer-info {
        align-items: center;
    }

    .social-links {
        align-items: center;
    }

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

    .systems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .system-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .system-icon {
        width: 50px;
        height: 50px;
    }

    .system-icon i {
        font-size: 20px;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    body {
        margin: 0;
        padding: 0;
    }

    .container {
        padding: 0 15px;
    }

    .header {
        padding: 15px 0;
    }

    .mobile-menu-button {
        display: flex !important;
        visibility: visible !important;
    }

    .hero {
        margin-top: 0;
        height: 100vh;
        min-height: 100vh;
    }

    .header-logo {
        height: 50px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .about-content {
        padding: 40px 0;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 16px;
    }

    .services {
        padding: 40px 0;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .contact {
        padding: 40px 0;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .info-item {
        padding: 12px;
    }

    .info-text h4 {
        font-size: 16px;
    }

    .info-text p {
        font-size: 14px;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-info h3 {
        font-size: 20px;
    }

    .footer-contact h4 {
        font-size: 16px;
    }

    .footer-contact-item {
        font-size: 13px;
    }

    .social-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .system-card {
        padding: 20px 15px;
    }

    .system-card h3 {
        font-size: 18px;
    }

    .system-card p {
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-card {
        padding: 15px 10px;
    }

    .info-item {
        padding: 10px;
    }
}

/* Mobile menu button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #c8a97e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    gap: 4px;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex !important;
    }
}

.mobile-menu-button span {
    width: 20px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: center;
}

.mobile-menu-button.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.header-logo {
    height: 60px; /* Adjust as needed */
    width: auto;
}

.contact-logo {
    height: 30px; /* Adjust as needed */
    width: auto;
    margin-left: 15px; /* To align with the other icons */
}

.footer-logo {
    height: 50px; /* Adjust as needed */
    width: auto;
    margin-bottom: 15px;
}

/* Force mobile menu button visibility */
@media screen and (max-width: 768px) {
    .mobile-menu-button {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
} 