:root {
    --primary-color: #00809D;
    --secondary-color: #FFD700;
    --accent-color: #D3AF37;
    --background-color: #FCF8DD;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--white);
    padding: 5px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hero-banner {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect width="1200" height="600" fill="%23f0f0f0"/><text x="600" y="300" text-anchor="middle" font-family="Arial" font-size="48" fill="%23999">Imagem de Fundo do Cliente</text></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 128, 157, 0.8);
}

.banner-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.menu-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.menu-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about {
    padding: 80px 0;
    background: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #666;
}

.services {
    padding: 80px 0;
    background: var(--background-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 5px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card > p {
    color: #666;
    margin-bottom: 20px;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: left;
}

.service-card.expanded .service-details {
    max-height: 300px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--background-color);
}

.service-details p {
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.google-info {
    padding: 80px 0;
    background: var(--white);
}

.google-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.google-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.google-rating {
    text-align: center;
    padding: 30px;
    background: var(--background-color);
    border-radius: 20px;
    border-left: 5px solid var(--secondary-color);
}

.business-name h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.business-type {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.rating-display {
    margin-bottom: 20px;
}

.stars {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.rating-info {
    margin-bottom: 15px;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 10px;
}

.review-count {
    color: #666;
    font-size: 0.9rem;
}

.google-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285F4;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.location-photos {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-section,
.photos-section {
    text-align: center;
}

.location-btn,
.photos-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.location-btn:hover,
.photos-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.photos-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.photos-btn:hover {
    background: var(--accent-color);
    color: var(--white);
}

.address,
.photos-description {
    color: #666;
    font-size: 0.95rem;
}

.recent-reviews {
    background: var(--background-color);
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
}

.recent-reviews h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.reviews-container {
    display: grid;
    gap: 25px;
    margin-bottom: 20px;
}

.review-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-color);
}

.review-stars {
    color: var(--secondary-color);
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.api-info {
    text-align: center;
    padding: 15px;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.api-info i {
    margin-right: 8px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.powered-by {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.powered-by a{
    text-decoration: none;
    color: white;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: var(--primary-color);
}

.modal h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-explanation {
    background: var(--background-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid var(--secondary-color);
}

.modal-explanation p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-explanation ul {
    list-style: none;
    padding: 0;
}

.modal-explanation li {
    padding: 5px 0;
    color: #555;
}

.sample-menu {
    background: var(--white);
    border: 2px solid var(--background-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.sample-menu h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.menu-category {
    margin-bottom: 25px;
}

.menu-category h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--background-color);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
}

.item-price {
    color: var(--accent-color);
    font-weight: 600;
}

.modal-note {
    background: #e8f4f8;
    color: var(--primary-color);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .google-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-photos {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}
