:root {
    --primary-color: #FFB6C1;
    --secondary-color: #4A4A4A;
    --accent-color: #FF748C;
    --background-color: #FFF;
    --text-color: #333;
    --gradient-primary: linear-gradient(to right, var(--primary-color), var(--accent-color));
    --box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

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

.logo {
    width: 180px;
    height: 60px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    background-color: transparent;
    mix-blend-mode: multiply;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

/* Hero Sections */
.about-hero,
.services-hero,
.franchise-hero,
.contact-hero,
.blog-hero {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.about-hero .container,
.services-hero .container,
.franchise-hero .container,
.contact-hero .container,
.blog-hero .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1,
.services-hero h1,
.franchise-hero h1,
.contact-hero h1,
.blog-hero h1 {
    font-size: 3.5em;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.about-hero p,
.services-hero p,
.franchise-hero p,
.contact-hero p,
.blog-hero p {
    font-size: 1.3em;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero,
    .services-hero,
    .franchise-hero,
    .contact-hero,
    .blog-hero {
        padding: 150px 0 60px;
        min-height: 300px;
    }

    .about-hero h1,
    .services-hero h1,
    .franchise-hero h1,
    .contact-hero h1,
    .blog-hero h1 {
        font-size: 2.8em;
        margin-bottom: 20px;
    }

    .about-hero p,
    .services-hero p,
    .franchise-hero p,
    .contact-hero p,
    .blog-hero p {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .logo {
        width: 150px;
        height: 50px;
    }

    .nav-links {
        display: none;
    }
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    color: white;
    animation: fadeInUp 1s ease;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    border: none;
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 116, 140, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 116, 140, 0.4);
}

.nav-links .btn {
    padding: 10px 25px;
    font-size: 0.95em;
    background: var(--gradient-primary);
}

/* Sound Control Button */
.sound-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sound-control:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

/* Section Styles */
.section {
    padding: 120px 0 80px;
}

.section-title {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 50px;
    font-size: 2.5em;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-color);
}

/* Card Styles */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Footer Styles */
.footer {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

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

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2em;
    color: white;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.schedule-item i {
    font-size: 1.2em;
    margin-top: 3px;
}

.schedule-item p {
    margin: 0;
    line-height: 1.6;
}

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

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

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.5em;
    margin: 15px 0;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item,
    .schedule-item {
        justify-content: center;
    }

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

    .scroll-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-color);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 116, 140, 0.3);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 116, 140, 0.4);
}

/* Login Page Styles */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    background: var(--accent-color);
}

.service-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(255,182,193,0.2);
}

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

.values-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.05) 0%, rgba(255, 116, 140, 0.05) 100%);
    border-radius: 40px;
    margin: 20px;
}

.swiper {
    width: 100%;
    padding: 40px 60px;
    overflow: visible;
}

.swiper-slide {
    opacity: 0.3;
    transform: scale(0.85);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(2px);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.swiper-slide-prev,
.swiper-slide-next {
    opacity: 0.6;
    transform: scale(0.9);
    filter: blur(1px);
}

.value-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.12);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 182, 193, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.08) 0%, rgba(255, 116, 140, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card i {
    font-size: 3.2em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover i {
    transform: scale(1.15) rotate(8deg);
}

.value-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.9em;
    font-weight: 600;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: -0.5px;
}

.value-card:hover h3 {
    transform: translateY(-5px);
}

.value-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.15em;
    max-width: 300px;
    margin: 0 auto;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.9;
}

.value-card:hover p {
    transform: translateY(-5px);
}

.swiper-button-next,
.swiper-button-prev {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(255, 116, 140, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.95;
    border: 2px solid transparent;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    border-color: white;
    box-shadow: 0 10px 25px rgba(255, 116, 140, 0.25);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: white;
}

.swiper-button-next {
    right: -10px;
}

.swiper-button-prev {
    left: -10px;
}

.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.4s ease;
    border-radius: 3px;
}

.swiper-pagination-bullet-active {
    width: 50px;
    background: var(--accent-color);
    opacity: 1;
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
        margin: 10px;
        border-radius: 30px;
    }

    .swiper {
        padding: 30px 25px;
    }

    .value-card {
        padding: 35px 25px;
        height: 300px;
        border-radius: 25px;
    }

    .value-card i {
        font-size: 2.8em;
        margin-bottom: 25px;
    }

    .value-card h3 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .value-card p {
        font-size: 1.05em;
        line-height: 1.6;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.3em;
    }

    .swiper-button-next {
        right: -5px;
    }

    .swiper-button-prev {
        left: -5px;
    }

    .swiper-pagination {
        margin-top: 30px;
    }

    .swiper-pagination-bullet {
        width: 25px;
        height: 5px;
    }

    .swiper-pagination-bullet-active {
        width: 40px;
    }
}

.units-section {
    margin: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.unit-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 182, 193, 0.1);
}

.unit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.2);
}

.unit-card h3 {
    color: var(--accent-color);
    font-size: 1.8em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.unit-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.unit-info {
    margin-top: 20px;
}

.unit-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.unit-info-item i {
    color: var(--accent-color);
    font-size: 1.2em;
    margin-top: 3px;
}

.unit-info-item div {
    flex: 1;
}

.unit-info-item h4 {
    color: var(--text-color);
    font-size: 1.1em;
    margin-bottom: 5px;
    font-weight: 600;
}

.unit-info-item p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.unit-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.unit-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .units-section {
        margin: 60px 0;
        gap: 30px;
        padding: 0 15px;
    }

    .unit-card {
        padding: 30px;
    }

    .unit-card h3 {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
}

/* Estilos do rodapé */
.unit-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.unit-link h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 600;
}

.unit-link p {
    color: white;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.unit-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.unit-info {
    margin-bottom: 20px;
}

.unit-info:last-child {
    margin-bottom: 0;
} 