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

html {
    scroll-behavior: smooth;
}

.logo-header img{
    max-width: 250px;
}

body {
    margin: 0;
    padding: 0;

    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2C3E50;
}

.center {
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h2 {
    color: #20B2AA;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2C3E50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #20B2AA;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2C3E50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.3), rgba(44, 62, 80, 0.4));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button.primary {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2C3E50;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #20B2AA, #48CAE4);
    color: white;
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(32, 178, 170, 0.4);
}

/* Sobre Section */
.sobre {
    padding: 6rem 0;
    background: #F8F9FA;
}

.title-sobre{
    margin-bottom: 0;
}

.subtitle-sobre{
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.sobre-content {
    border: 0.1rem dashed #bddbf8;
    border-radius: 20px;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-image {
    border-radius: 20px;
    position: relative;
}

.sobre-img {
    width: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video{
    border: 12px solid #d6e5f4;
    border-radius: 20px;
    width: 100%    !important;
    height: auto   !important;
}

/* Diferenciais Section */
.diferenciais {
    padding: 6rem 0;
    background: white;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3rem;
    margin-top: 3rem;
}

.diferencial-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #20B2AA, #48CAE4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.diferencial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.diferencial-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #D4AF37;
    font-weight: 600;
}

.diferencial-card p {
    line-height: 1.7;
    color: #666;
}

/* ==================================================
Depoimentos e comentários do google
 ===================================================*/
.avaliacoes-google{
    overflow: auto;
    padding-bottom: 5rem;
}

.card-comentarios{
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: block;
    float: left;
    height: 550px;
    transition: all 0.3s ease;
    padding: 2rem;
    margin: 1rem;
    width: 350px;
}

.autor-data{
    border-bottom: 1px solid #dddddd;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.autor-foto{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:100px;
}

.autor-nome{
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0.5rem;
}

.autor-estrelas{
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.estrela{
    color: #e4c30d;
}

/* Experiências Section */
.experiencias {
    padding: 6rem 0;
    background: #F8F9FA;
}

.experiencias-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2rem;
    margin-top: 3rem;
}

.experiencia-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.experiencia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.experiencia-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.experiencia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experiencia-card:hover .experiencia-image img {
    transform: scale(1.1);
}

.experiencia-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.experiencia-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.experiencia-content {
    padding: 1.5rem;
}

.experiencia-content p {
    line-height: 1.7;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #20B2AA, #48CAE4);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contato Section */
.contato {
    padding: 6rem 0;
    background: white;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info h2 {
    margin-bottom: 1rem;
}

.contato-info > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.contato-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contato-item i {
    font-size: 1.5rem;
    color: #20B2AA;
    margin-top: 0.5rem;
}

.contato-item h4 {
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.contato-item p {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.25rem;
}

.contato-item span {
    font-size: 0.9rem;
    color: #666;
}

/* Form */
.contato-form {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20B2AA;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #20B2AA;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #20B2AA;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495E;
    color: #BDC3C7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .experiencias-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .contato-form {
        padding: 1.5rem;
    }
}

