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

:root {
    --primary-color: #ff83a8;
    --secondary-color: #ff6b9d;
    --accent-color: #ff9bb5;
    --logo-pink: #ff83a8;
    --logo-light: #ff9bb5;
    --logo-dark: #ff6b9d;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --background-light: #FFF8F0;
    --background-pink: #FFE4E6;
    --background-blue: #E8F8F5;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
}

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

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

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

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

.logo {
    text-align: left;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--logo-pink), var(--logo-light), var(--logo-dark));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: none;
    animation: gradientShift 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-blue) 0%, var(--background-pink) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, var(--logo-pink), var(--logo-light), var(--logo-dark));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #45B7B8;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(78, 205, 196, 0.3);
}

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

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

/* Additional styles for the Realizar Pedido button */
.btn-order {
    font-size: 1.25rem;
    padding: 18px 40px;
    box-shadow: 0 8px 30px rgba(255, 131, 168, 0.5);
    border-radius: 30px;
    transition: all 0.4s ease;
}

.btn-order:hover {
    background: #ff5a7a;
    box-shadow: 0 12px 40px rgba(255, 90, 122, 0.7);
    transform: translateY(-3px) scale(1.05);
}

/* Hero Logo */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
    position: relative;
}

.hero-logo {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 400px;
    border-radius: 0;
    box-shadow: none;
    animation: logoFloat 6s ease-in-out infinite;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(255, 131, 168, 0.2));
    object-fit: contain;
}

.hero-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(255, 131, 168, 0.3)) brightness(1.1);
}

/* Floating Churros */
.floating-churros {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.churro {
    position: absolute;
    font-size: 2rem;
    animation: float-churro 4s ease-in-out infinite;
    opacity: 0.7;
}

.churro-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.churro-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.churro-3 {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.title-decoration {
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Sobre Nós */
.sobre {
    padding: 100px 0;
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.sobre-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carrinho-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.carrinho-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 131, 168, 0.3);
}

/* Responsividade para a imagem do carrinho */
@media (max-width: 768px) {
    .carrinho-image {
        max-width: 100%;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .carrinho-image {
        max-width: 100%;
        width: 95%;
    }
}

/* Valores */
.valores {
    padding: 100px 0;
    background: var(--background-blue);
}

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

.valor-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--background-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.valor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.valor-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Equipe */
.equipe {
    padding: 100px 0;
    background: var(--white);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.funcionario-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.funcionario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.funcionario-photo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.employee-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.employee-img:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Fallback para caso não tenha imagem */
.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--background-pink);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.photo-placeholder:hover {
    transform: scale(1.05);
}

.photo-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.photo-placeholder span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

.funcionario-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.funcionario-info p {
    color: var(--text-light);
}

/* Localização */
.localizacao {
    padding: 100px 0;
    background: var(--background-pink);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.localizacao-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parque-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.parque-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 131, 168, 0.3);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: 3px dashed var(--primary-color);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-light);
    text-align: center;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: var(--text-light);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-churro {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 2rem 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .highlight {
        font-size: 3rem;
    }
    
    .hero-logo {
        width: 100%;
        min-height: 350px;
        max-width: none;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
    }
    
    .btn-order {
        font-size: 1.1rem;
        padding: 16px 30px;
        max-width: 320px;
    }
    
    .sobre-content,
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .parque-image {
        max-width: 100%;
        width: 90%;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .equipe-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .highlight {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-order {
        font-size: 1rem;
        padding: 14px 25px;
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-logo {
        width: 100%;
        min-height: 300px;
        max-width: none;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 1rem 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .parque-image {
        max-width: 100%;
        width: 95%;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .highlight {
        font-size: 2.2rem;
    }
    
    .hero-logo {
        width: 100%;
        min-height: 250px;
        max-width: none;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .btn-order {
        font-size: 0.9rem;
        padding: 12px 20px;
        max-width: 260px;
    }
    
    .hero-container {
        padding: 1rem 10px;
    }
    
    .parque-image {
        max-width: 100%;
        width: 100%;
    }
}
