/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF69B4;
    --primary-light: #FFB6C1;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn--primary:hover {
    background: #FF1493;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    box-shadow: var(--shadow);
}

.btn--secondary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav__link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.hero__description {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero__image {
    position: relative;
}

.hero__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    margin-top: 60px;
}

.about__story {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.about__story-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.about__story-text {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__team {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team__member {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team__member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member__photo {
    flex-shrink: 0;
}

.member__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
}

.member__name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.member__role {
    font-size: 14px;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member__description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section__title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.section__subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 60px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service__card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service__icon {
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.service__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.service__description {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial__card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial__quote {
    font-size: 60px;
    color: var(--primary-light);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial__text {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial__author h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.testimonial__author span {
    color: var(--medium-gray);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF1493 100%);
    text-align: center;
}

.cta__title {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.cta__description {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--white);
    border-top: 1px solid rgba(255, 105, 180, 0.1);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer__subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.footer__description {
    color: var(--medium-gray);
    line-height: 1.7;
}

.footer__info p {
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__social-link {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer__social-link:hover {
    color: var(--primary-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 105, 180, 0.1);
    color: var(--medium-gray);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 30px;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__img {
        height: 300px;
    }

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

    .team__member {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .member__img {
        width: 100px;
        height: 100px;
    }

    .section__title {
        font-size: 28px;
    }

    .services__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service__card,
    .testimonial__card {
        padding: 30px 20px;
    }

    .cta__title {
        font-size: 28px;
    }

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

    .footer__social {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

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

    .hero__title {
        font-size: 28px;
    }

    .hero__description {
        font-size: 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .service__card,
    .testimonial__card {
        padding: 25px 15px;
    }
}

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

.hero__content,
.service__card,
.testimonial__card {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

